[llvm-commits] CVS: llvm-java/lib/Compiler/Compiler.cpp

Alkis Evlogimenos alkis at cs.uiuc.edu
Wed Sep 29 14:28:52 PDT 2004



Changes in directory llvm-java/lib/Compiler:

Compiler.cpp updated: 1.117 -> 1.118
---
Log message:

Indentation changes.


---
Diffs of the changes:  (+2 -3)

Index: llvm-java/lib/Compiler/Compiler.cpp
diff -u llvm-java/lib/Compiler/Compiler.cpp:1.117 llvm-java/lib/Compiler/Compiler.cpp:1.118
--- llvm-java/lib/Compiler/Compiler.cpp:1.117	Wed Sep 29 16:02:08 2004
+++ llvm-java/lib/Compiler/Compiler.cpp	Wed Sep 29 16:28:41 2004
@@ -817,7 +817,7 @@
       name += method->getDescriptor()->str();
 
       Function* hook = module_.getOrInsertFunction(LLVM_JAVA_STATIC_INIT,
-                                                    Type::VoidTy, 0);
+                                                   Type::VoidTy, 0);
       Function* init = module_.getOrInsertFunction(name, Type::VoidTy, 0);
 
       // if this is the first time we scheduled this function
@@ -875,8 +875,7 @@
     Function* compileMethod(const std::string& classMethodDesc) {
       // initialize the static initializer function
       Function* staticInit =
-        module_.getOrInsertFunction(LLVM_JAVA_STATIC_INIT,
-                                     Type::VoidTy, 0);
+        module_.getOrInsertFunction(LLVM_JAVA_STATIC_INIT, Type::VoidTy, 0);
       BasicBlock* staticInitBB = new BasicBlock("entry", staticInit);
       new ReturnInst(NULL, staticInitBB);
 






More information about the llvm-commits mailing list