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

Alkis Evlogimenos alkis at cs.uiuc.edu
Thu Oct 28 13:45:22 PDT 2004



Changes in directory llvm-java/lib/Compiler:

Compiler.cpp updated: 1.131 -> 1.132
---
Log message:

Ignore monitorenter and monitorexit bytecodes.


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

Index: llvm-java/lib/Compiler/Compiler.cpp
diff -u llvm-java/lib/Compiler/Compiler.cpp:1.131 llvm-java/lib/Compiler/Compiler.cpp:1.132
--- llvm-java/lib/Compiler/Compiler.cpp:1.131	Thu Oct 28 14:37:41 2004
+++ llvm-java/lib/Compiler/Compiler.cpp	Thu Oct 28 15:45:12 2004
@@ -1611,11 +1611,11 @@
     }
 
     void do_monitorenter() {
-      assert(0 && "not implemented");
+      // assert(0 && "not implemented");
     }
 
     void do_monitorexit() {
-      assert(0 && "not implemented");
+      // assert(0 && "not implemented");
     }
 
     void do_multianewarray(unsigned index, unsigned dims) {






More information about the llvm-commits mailing list