diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-02-06 21:44:22 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-02-06 21:44:22 +0000 |
commit | 0aef16afd5ff7d1eacc818bec5a69679cce2f115 (patch) | |
tree | 19f36a3f10c26c8f7ef3dd0f15edbcf6f6e4d87c /llvm/include/llvm-c | |
parent | 7c49a0e9e368b49461757b5c2d97044c920c1387 (diff) | |
download | bcm5719-llvm-0aef16afd5ff7d1eacc818bec5a69679cce2f115.tar.gz bcm5719-llvm-0aef16afd5ff7d1eacc818bec5a69679cce2f115.zip |
[unwind removal] Remove all of the code for the dead 'unwind' instruction. There
were no 'unwind' instructions being generated before this, so this is in effect
a no-op.
llvm-svn: 149906
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 4c3b009ef28..e0195e0ec91 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/include/llvm-c/Core.h @@ -200,9 +200,7 @@ typedef enum { /* Exception Handling Operators */ LLVMResume = 58, - LLVMLandingPad = 59, - LLVMUnwind = 60 - + LLVMLandingPad = 59 } LLVMOpcode; |