diff options
| author | Eli Bendersky <eliben@chromium.org> | 2013-06-25 15:14:49 -0700 |
|---|---|---|
| committer | Eli Bendersky <eliben@chromium.org> | 2013-06-25 15:14:49 -0700 |
| commit | 838d8e9753498212ca9587dd0d5b3ddebe824068 (patch) | |
| tree | 1d8e1a079f7a8878d37f3434cb311dae79b03855 /lib/CodeGen | |
| parent | 35d0901ac239469021a36f21e488cf20484f2095 (diff) | |
Support for mem* library functions in stable bitcode via intrinsics.
* Don't preserve external linking for mem{cpy,move,cmp} during LTO.
* In the RewritePNaClLibraryCalls pass - add rewriting of mem* calls to
appropriate intrinsics, similarly to the way it was done for longjmp.
BUG=https://code.google.com/p/nativeclient/issues/detail?id=3493
R=mseaborn@chromium.org
Review URL: https://codereview.chromium.org/17622003
Diffstat (limited to 'lib/CodeGen')
| -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 0c035718a4..f16e5978d9 100644 --- a/lib/CodeGen/IntrinsicLowering.cpp +++ b/lib/CodeGen/IntrinsicLowering.cpp @@ -108,7 +108,6 @@ static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI, // Bitcode can then internalize symbols. static const char *IntrinsicNames[] = { "abort", - "memcpy", "memset", "memmove", "powf", "pow", "powl", NULL }; |
