[llvm-commits] CVS: llvm/tools/bugpoint/CodeGeneratorBug.cpp

Misha Brukman brukman at cs.uiuc.edu
Mon Oct 20 14:44:04 PDT 2003


Changes in directory llvm/tools/bugpoint:

CodeGeneratorBug.cpp updated: 1.28 -> 1.29

---
Log message:

Made error message more comprehensible.


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

Index: llvm/tools/bugpoint/CodeGeneratorBug.cpp
diff -u llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.28 llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.29
--- llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.28	Mon Oct 20 12:57:12 2003
+++ llvm/tools/bugpoint/CodeGeneratorBug.cpp	Mon Oct 20 14:43:47 2003
@@ -167,7 +167,8 @@
           } else {
             // FIXME: need to take care of cases where a function is used that
             // is not an instruction, e.g. global variable initializer...
-            std::cerr << "Non-instruction is using an external function!\n";
+            std::cerr <<
+              "UNSUPPORTED: External function used as global initializer!\n";
             abort();
           }
       }





More information about the llvm-commits mailing list