[llvm-commits] CVS: llvm/lib/Transforms/IPO/LowerSetJmp.cpp
Chris Lattner
sabre at nondot.org
Sat Jan 6 23:00:02 PST 2007
Changes in directory llvm/lib/Transforms/IPO:
LowerSetJmp.cpp updated: 1.35 -> 1.36
---
Log message:
relax types
---
Diffs of the changes: (+7 -7)
LowerSetJmp.cpp | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
Index: llvm/lib/Transforms/IPO/LowerSetJmp.cpp
diff -u llvm/lib/Transforms/IPO/LowerSetJmp.cpp:1.35 llvm/lib/Transforms/IPO/LowerSetJmp.cpp:1.36
--- llvm/lib/Transforms/IPO/LowerSetJmp.cpp:1.35 Sat Dec 30 23:48:39 2006
+++ llvm/lib/Transforms/IPO/LowerSetJmp.cpp Sun Jan 7 00:59:47 2007
@@ -61,13 +61,13 @@
class LowerSetJmp : public ModulePass,
public InstVisitor<LowerSetJmp> {
// LLVM library functions...
- Function* InitSJMap; // __llvm_sjljeh_init_setjmpmap
- Function* DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap
- Function* AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map
- Function* ThrowLongJmp; // __llvm_sjljeh_throw_longjmp
- Function* TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception
- Function* IsLJException; // __llvm_sjljeh_is_longjmp_exception
- Function* GetLJValue; // __llvm_sjljeh_get_longjmp_value
+ Constant *InitSJMap; // __llvm_sjljeh_init_setjmpmap
+ Constant *DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap
+ Constant *AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map
+ Constant *ThrowLongJmp; // __llvm_sjljeh_throw_longjmp
+ Constant *TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception
+ Constant *IsLJException; // __llvm_sjljeh_is_longjmp_exception
+ Constant *GetLJValue; // __llvm_sjljeh_get_longjmp_value
typedef std::pair<SwitchInst*, CallInst*> SwitchValuePair;
More information about the llvm-commits
mailing list