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

Alkis Evlogimenos alkis at cs.uiuc.edu
Tue Jan 25 12:56:17 PST 2005



Changes in directory llvm-java/lib/Compiler:

Compiler.cpp updated: 1.197 -> 1.198
---
Log message:

Bring in anything from java/util.


---
Diffs of the changes:  (+1 -11)

 Compiler.cpp |   12 +-----------
 1 files changed, 1 insertion(+), 11 deletions(-)


Index: llvm-java/lib/Compiler/Compiler.cpp
diff -u llvm-java/lib/Compiler/Compiler.cpp:1.197 llvm-java/lib/Compiler/Compiler.cpp:1.198
--- llvm-java/lib/Compiler/Compiler.cpp:1.197	Tue Jan 25 10:55:45 2005
+++ llvm-java/lib/Compiler/Compiler.cpp	Tue Jan 25 14:56:06 2005
@@ -1309,17 +1309,7 @@
           classMethodDesc.find("java/lang/Long") != 0 &&
           classMethodDesc.find("java/lang/Short") != 0 &&
           classMethodDesc.find("java/lang/StringBuffer") != 0 &&
-          classMethodDesc.find("java/util/ConcurrentModificationException") != 0 &&
-          classMethodDesc.find("java/util/IndexOutOfBoundsException") != 0 &&
-          classMethodDesc.find("java/util/NoSuchElementException") != 0 &&
-          classMethodDesc.find("java/util/AbstractCollection") != 0 &&
-          classMethodDesc.find("java/util/AbstractList") != 0 &&
-          classMethodDesc.find("java/util/AbstractSet") != 0 &&
-          classMethodDesc.find("java/util/AbstractMap") != 0 &&
-          classMethodDesc.find("java/util/AbstractSequentialList") != 0 &&
-          classMethodDesc.find("java/util/LinkedList") != 0 &&
-          classMethodDesc.find("java/util/TreeMap") != 0 &&
-          classMethodDesc.find("java/util/TreeSet") != 0) {
+          classMethodDesc.find("java/util/") != 0) {
         DEBUG(std::cerr << "Skipping compilation of method: "
               << classMethodDesc << '\n');
         return function;






More information about the llvm-commits mailing list