diff options
| author | Jim Laskey <jlaskey@mac.com> | 2007-02-28 18:37:50 +0000 |
|---|---|---|
| committer | Jim Laskey <jlaskey@mac.com> | 2007-02-28 18:37:50 +0000 |
| commit | c114990526b134b7df04f1d44a110d16116050c8 (patch) | |
| tree | e3f113ffc5456fc400c8a18c37a708a064f52b27 | |
| parent | cf465fcebc531c2cee34f282112aa69c5d3bf732 (diff) | |
| download | bcm5719-llvm-c114990526b134b7df04f1d44a110d16116050c8.tar.gz bcm5719-llvm-c114990526b134b7df04f1d44a110d16116050c8.zip | |
Provide a more meaningful name.
llvm-svn: 34751
| -rw-r--r-- | llvm/include/llvm/Intrinsics.td | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/IntrinsicLowering.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Intrinsics.td b/llvm/include/llvm/Intrinsics.td index e444d75bc6a..87e6871eb5d 100644 --- a/llvm/include/llvm/Intrinsics.td +++ b/llvm/include/llvm/Intrinsics.td @@ -232,7 +232,7 @@ def int_dbg_declare : Intrinsic<[llvm_void_ty, llvm_descriptor_ty, //===------------------ Exception Handling Intrinsics----------------------===// // def int_eh_exception : Intrinsic<[llvm_ptr_ty]>; -def int_eh_handlers : Intrinsic<[llvm_i32_ty, llvm_ptr_ty, llvm_ptr_ty, +def int_eh_selector : Intrinsic<[llvm_i32_ty, llvm_ptr_ty, llvm_ptr_ty, llvm_vararg_ty]>; def int_eh_typeid_for : Intrinsic<[llvm_i32_ty, llvm_ptr_ty]>; diff --git a/llvm/lib/CodeGen/IntrinsicLowering.cpp b/llvm/lib/CodeGen/IntrinsicLowering.cpp index e75291dffa4..09709fedaed 100644 --- a/llvm/lib/CodeGen/IntrinsicLowering.cpp +++ b/llvm/lib/CodeGen/IntrinsicLowering.cpp @@ -357,7 +357,7 @@ void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) { case Intrinsic::dbg_func_start: case Intrinsic::dbg_declare: case Intrinsic::eh_exception: - case Intrinsic::eh_handlers: + case Intrinsic::eh_selector: break; // Simply strip out debugging and eh intrinsics case Intrinsic::memcpy_i32: |

