[llvm-commits] [llvm] r75440 - in /llvm/trunk: include/llvm-c/ExecutionEngine.h include/llvm/Analysis/IVUsers.h include/llvm/Analysis/ScalarEvolution.h include/llvm/Debugger/ProgramInfo.h lib/CodeGen/Spiller.h lib/ExecutionEngine/JIT/JIT.h tools/llvm-db/CLIDebugger.h

Daniel Dunbar daniel at zuster.org
Sun Jul 12 16:50:36 PDT 2009


Author: ddunbar
Date: Sun Jul 12 18:50:34 2009
New Revision: 75440

URL: http://llvm.org/viewvc/llvm-project?rev=75440&view=rev
Log:
Match declaration to definition.

Modified:
    llvm/trunk/include/llvm-c/ExecutionEngine.h
    llvm/trunk/include/llvm/Analysis/IVUsers.h
    llvm/trunk/include/llvm/Analysis/ScalarEvolution.h
    llvm/trunk/include/llvm/Debugger/ProgramInfo.h
    llvm/trunk/lib/CodeGen/Spiller.h
    llvm/trunk/lib/ExecutionEngine/JIT/JIT.h
    llvm/trunk/tools/llvm-db/CLIDebugger.h

Modified: llvm/trunk/include/llvm-c/ExecutionEngine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/ExecutionEngine.h?rev=75440&r1=75439&r2=75440&view=diff

==============================================================================
--- llvm/trunk/include/llvm-c/ExecutionEngine.h (original)
+++ llvm/trunk/include/llvm-c/ExecutionEngine.h Sun Jul 12 18:50:34 2009
@@ -104,7 +104,7 @@
 }
 
 namespace llvm {
-  class GenericValue;
+  struct GenericValue;
   class ExecutionEngine;
   
   #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref)   \

Modified: llvm/trunk/include/llvm/Analysis/IVUsers.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/IVUsers.h?rev=75440&r1=75439&r2=75440&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/IVUsers.h (original)
+++ llvm/trunk/include/llvm/Analysis/IVUsers.h Sun Jul 12 18:50:34 2009
@@ -25,7 +25,7 @@
 class DominatorTree;
 class Instruction;
 class Value;
-class IVUsersOfOneStride;
+struct IVUsersOfOneStride;
 
 /// IVStrideUse - Keep track of one use of a strided induction variable, where
 /// the stride is stored externally.  The Offset member keeps track of the

Modified: llvm/trunk/include/llvm/Analysis/ScalarEvolution.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/ScalarEvolution.h?rev=75440&r1=75439&r2=75440&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Analysis/ScalarEvolution.h (original)
+++ llvm/trunk/include/llvm/Analysis/ScalarEvolution.h Sun Jul 12 18:50:34 2009
@@ -164,7 +164,7 @@
     };
 
     friend class SCEVCallbackVH;
-    friend class SCEVExpander;
+    friend struct SCEVExpander;
 
     /// F - The function we are analyzing.
     ///

Modified: llvm/trunk/include/llvm/Debugger/ProgramInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Debugger/ProgramInfo.h?rev=75440&r1=75439&r2=75440&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Debugger/ProgramInfo.h (original)
+++ llvm/trunk/include/llvm/Debugger/ProgramInfo.h Sun Jul 12 18:50:34 2009
@@ -30,7 +30,7 @@
   class GlobalVariable;
   class Module;
   class SourceFile;
-  class SourceLanguage;
+  struct SourceLanguage;
   class ProgramInfo;
 
   /// SourceLanguageCache - SourceLanguage implementations are allowed to cache

Modified: llvm/trunk/lib/CodeGen/Spiller.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/Spiller.h?rev=75440&r1=75439&r2=75440&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/Spiller.h (original)
+++ llvm/trunk/lib/CodeGen/Spiller.h Sun Jul 12 18:50:34 2009
@@ -14,7 +14,7 @@
 
 namespace llvm {
 
-  class LiveInterval;
+  struct LiveInterval;
   class LiveIntervals;
   class LiveStacks;
   class MachineFunction;

Modified: llvm/trunk/lib/ExecutionEngine/JIT/JIT.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/JIT/JIT.h?rev=75440&r1=75439&r2=75440&view=diff

==============================================================================
--- llvm/trunk/lib/ExecutionEngine/JIT/JIT.h (original)
+++ llvm/trunk/lib/ExecutionEngine/JIT/JIT.h Sun Jul 12 18:50:34 2009
@@ -20,7 +20,7 @@
 namespace llvm {
 
 class Function;
-class JITEvent_EmittedFunctionDetails;
+struct JITEvent_EmittedFunctionDetails;
 class MachineCodeEmitter;
 class MachineCodeInfo;
 class TargetJITInfo;

Modified: llvm/trunk/tools/llvm-db/CLIDebugger.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-db/CLIDebugger.h?rev=75440&r1=75439&r2=75440&view=diff

==============================================================================
--- llvm/trunk/tools/llvm-db/CLIDebugger.h (original)
+++ llvm/trunk/tools/llvm-db/CLIDebugger.h Sun Jul 12 18:50:34 2009
@@ -21,7 +21,7 @@
 namespace llvm {
   class CLICommand;
   class SourceFile;
-  class SourceLanguage;
+  struct SourceLanguage;
   class ProgramInfo;
   class RuntimeInfo;
   class LLVMContext;





More information about the llvm-commits mailing list