[llvm-commits] CVS: llvm/lib/Bytecode/Reader/Reader.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Sep 26 09:46:01 PDT 2003


Changes in directory llvm/lib/Bytecode/Reader:

Reader.cpp updated: 1.63 -> 1.64

---
Log message:

Just rethrow previous exception instead of making a new one


---
Diffs of the changes:

Index: llvm/lib/Bytecode/Reader/Reader.cpp
diff -u llvm/lib/Bytecode/Reader/Reader.cpp:1.63 llvm/lib/Bytecode/Reader/Reader.cpp:1.64
--- llvm/lib/Bytecode/Reader/Reader.cpp:1.63	Tue Sep 23 11:15:29 2003
+++ llvm/lib/Bytecode/Reader/Reader.cpp	Fri Sep 26 09:44:52 2003
@@ -654,6 +654,6 @@
     freeState();       // Must destroy handles before deleting module!
     delete TheModule;
     TheModule = 0;
-    throw Error;
+    throw;
   }
 }





More information about the llvm-commits mailing list