diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-04-05 22:30:05 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-04-05 22:30:05 +0000 |
commit | 2076952111cf60cd12c51ebec45094848e393b0d (patch) | |
tree | 20e88399cf9aeea9c069ebfd4ee10c10ebe5d48b /test/CodeGen | |
parent | e4ce08c14a4b90a6a32c29c042591348c16a0245 (diff) | |
download | external_llvm-2076952111cf60cd12c51ebec45094848e393b0d.zip external_llvm-2076952111cf60cd12c51ebec45094848e393b0d.tar.gz external_llvm-2076952111cf60cd12c51ebec45094848e393b0d.tar.bz2 |
Add nounwind.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100482 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/memcpy.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/memcpy.ll b/test/CodeGen/X86/memcpy.ll index 24530cd..5a3ae77 100644 --- a/test/CodeGen/X86/memcpy.ll +++ b/test/CodeGen/X86/memcpy.ll @@ -2,13 +2,13 @@ declare void @llvm.memcpy.i64(i8*, i8*, i64, i32) -define i8* @my_memcpy(i8* %a, i8* %b, i64 %n) { +define i8* @my_memcpy(i8* %a, i8* %b, i64 %n) nounwind { entry: tail call void @llvm.memcpy.i64( i8* %a, i8* %b, i64 %n, i32 1 ) ret i8* %a } -define i8* @my_memcpy2(i64* %a, i64* %b, i64 %n) { +define i8* @my_memcpy2(i64* %a, i64* %b, i64 %n) nounwind { entry: %tmp14 = bitcast i64* %a to i8* %tmp25 = bitcast i64* %b to i8* |