diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-05-07 22:59:08 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-05-07 22:59:08 +0000 |
commit | 0d6311d46ca189d14051d5d6ca75f569e2a2c905 (patch) | |
tree | cbd604d2eff42b28ab159787a472ef00dbf56bb9 /llvm/test/CodeGen/X86/sse-align-3.ll | |
parent | fc2edad4ae6d4e69732b2d400e299d5598ba3e9d (diff) | |
download | bcm5719-llvm-0d6311d46ca189d14051d5d6ca75f569e2a2c905.tar.gz bcm5719-llvm-0d6311d46ca189d14051d5d6ca75f569e2a2c905.zip |
Add nounwind.
llvm-svn: 50837
Diffstat (limited to 'llvm/test/CodeGen/X86/sse-align-3.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/sse-align-3.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/sse-align-3.ll b/llvm/test/CodeGen/X86/sse-align-3.ll index ae9faabea41..5bbcd59e0e9 100644 --- a/llvm/test/CodeGen/X86/sse-align-3.ll +++ b/llvm/test/CodeGen/X86/sse-align-3.ll @@ -1,12 +1,10 @@ ; RUN: llvm-as < %s | llc -march=x86-64 | grep movap | count 2 -define void @foo(<4 x float>* %p, <4 x float> %x) -{ +define void @foo(<4 x float>* %p, <4 x float> %x) nounwind { store <4 x float> %x, <4 x float>* %p ret void } -define void @bar(<2 x double>* %p, <2 x double> %x) -{ +define void @bar(<2 x double>* %p, <2 x double> %x) nounwind { store <2 x double> %x, <2 x double>* %p ret void } |