diff options
author | Chris Lattner <sabre@nondot.org> | 2007-01-07 06:59:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-01-07 06:59:47 +0000 |
commit | 35057c2625efb902048c215cf52f960f60944318 (patch) | |
tree | 1f90cba62fb49cfc74ba43686c4078b03b33d305 | |
parent | 92141968cbdd1164e1dc9f4d730173957eeca8a2 (diff) | |
download | external_llvm-35057c2625efb902048c215cf52f960f60944318.zip external_llvm-35057c2625efb902048c215cf52f960f60944318.tar.gz external_llvm-35057c2625efb902048c215cf52f960f60944318.tar.bz2 |
relax types
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32981 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/IPO/LowerSetJmp.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/Transforms/IPO/LowerSetJmp.cpp b/lib/Transforms/IPO/LowerSetJmp.cpp index 44b0ab5..ab6ee23 100644 --- a/lib/Transforms/IPO/LowerSetJmp.cpp +++ b/lib/Transforms/IPO/LowerSetJmp.cpp @@ -61,13 +61,13 @@ namespace { 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; |