diff options
author | Eli Bendersky <eliben@chromium.org> | 2013-06-28 10:10:01 -0700 |
---|---|---|
committer | Eli Bendersky <eliben@chromium.org> | 2013-06-28 10:10:01 -0700 |
commit | 2915b551ddcb24d34da8eeaae66c21de9714a7b2 (patch) | |
tree | 8f1ef02e7d71beeef5bc73ab4381dba8a047095c | |
parent | 0fd7657db6cc9c879a5cfc5204873e7f7462fe45 (diff) |
Do not preserve abort() - it's not needed for ARM and X86.
In a subsequent CL I'll clean up the whole IntrinsicLowering logic - probably
reverting it to upstream since we no longer really use it.
BUG=https://code.google.com/p/nativeclient/issues/detail?id=3526
R=mseaborn@chromium.org
Review URL: https://codereview.chromium.org/18053017
-rw-r--r-- | lib/CodeGen/IntrinsicLowering.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/IntrinsicLowering.cpp b/lib/CodeGen/IntrinsicLowering.cpp index 166828042d..b094fa28e1 100644 --- a/lib/CodeGen/IntrinsicLowering.cpp +++ b/lib/CodeGen/IntrinsicLowering.cpp @@ -107,7 +107,6 @@ static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI, // functions exported by native libs, so that they can be found. // Bitcode can then internalize symbols. static const char *IntrinsicNames[] = { - "abort", NULL }; |