diff options
author | Chris Lattner <sabre@nondot.org> | 2011-06-18 06:05:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-06-18 06:05:24 +0000 |
commit | 80ed9dc9e58f356139785cfb6a9f24cb64b76986 (patch) | |
tree | 6b8e2edd7fe001a75d5dac4fe44317da6e5daea7 /llvm/test/CodeGen/X86/darwin-bzero.ll | |
parent | 2a26100c87351e0b89c469da9b0dff12f3383f1c (diff) | |
download | bcm5719-llvm-80ed9dc9e58f356139785cfb6a9f24cb64b76986.tar.gz bcm5719-llvm-80ed9dc9e58f356139785cfb6a9f24cb64b76986.zip |
rip out a ton of intrinsic modernization logic from AutoUpgrade.cpp, which is
for pre-2.9 bitcode files. We keep x86 unaligned loads, movnt, crc32, and the
target indep prefetch change.
As usual, updating the testsuite is a PITA.
llvm-svn: 133337
Diffstat (limited to 'llvm/test/CodeGen/X86/darwin-bzero.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/darwin-bzero.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/darwin-bzero.ll b/llvm/test/CodeGen/X86/darwin-bzero.ll index a9573cfc6a2..3099526028a 100644 --- a/llvm/test/CodeGen/X86/darwin-bzero.ll +++ b/llvm/test/CodeGen/X86/darwin-bzero.ll @@ -1,8 +1,8 @@ ; RUN: llc < %s -mtriple=i386-apple-darwin10 | grep __bzero -declare void @llvm.memset.i32(i8*, i8, i32, i32) +declare void @llvm.memset.p0i8.i32(i8* nocapture, i8, i32, i32, i1) nounwind define void @foo(i8* %p, i32 %len) { - call void @llvm.memset.i32(i8* %p, i8 0, i32 %len, i32 1) + call void @llvm.memset.p0i8.i32(i8* %p, i8 0, i32 %len, i32 1, i1 false) ret void } |