diff options
author | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-01-31 13:12:46 +0000 |
---|---|---|
committer | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-01-31 13:12:46 +0000 |
commit | 7ae4f5599ee34da7749df35b4e726ddd38b90c91 (patch) | |
tree | 132e60aa06af786035106b3101aad2ace6d6d2b8 /llvm/test/CodeGen/ARM/hello.ll | |
parent | 143576ddd26837ed63f71f76671e409338d4f056 (diff) | |
download | bcm5719-llvm-7ae4f5599ee34da7749df35b4e726ddd38b90c91.tar.gz bcm5719-llvm-7ae4f5599ee34da7749df35b4e726ddd38b90c91.zip |
ARM fix: Miscompilation when frame pointer can't be eliminated. Uninitialized frame pointer register is used.
llvm-svn: 33703
Diffstat (limited to 'llvm/test/CodeGen/ARM/hello.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/hello.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/hello.ll b/llvm/test/CodeGen/ARM/hello.ll index abf6b4c0400..fd4fa0126fc 100644 --- a/llvm/test/CodeGen/ARM/hello.ll +++ b/llvm/test/CodeGen/ARM/hello.ll @@ -1,6 +1,6 @@ ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm && ; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-linux | grep mov | wc -l | grep 1 && -; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin | grep mov | wc -l | grep 2 +; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin --disable-fp-elim | grep mov | wc -l | grep 2 %str = internal constant [12 x sbyte] c"Hello World\00" |