diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-01-22 23:18:10 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-01-22 23:18:10 +0000 |
commit | 07700d123e8385476879d567a30f865762178fc3 (patch) | |
tree | baa088f9341e8e075898b66a7541421cd2b47d92 /test/CodeGen/ARM/align.ll | |
parent | 9b631a58ef25df2905cbe59fa618db79a3d535c5 (diff) | |
download | external_llvm-07700d123e8385476879d567a30f865762178fc3.zip external_llvm-07700d123e8385476879d567a30f865762178fc3.tar.gz external_llvm-07700d123e8385476879d567a30f865762178fc3.tar.bz2 |
Make it work for both Linux and Mac OS.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33451 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/align.ll')
-rw-r--r-- | test/CodeGen/ARM/align.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/align.ll b/test/CodeGen/ARM/align.ll index bad7c6b..60dd90e 100644 --- a/test/CodeGen/ARM/align.ll +++ b/test/CodeGen/ARM/align.ll @@ -1,7 +1,8 @@ ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm && ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep align.*1 | wc | grep 1 && -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep align.*2 | wc | grep 2 && -; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep align.*3 | wc | grep 2 +; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-linux | grep align.*2 | wc | grep 2 && +; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-linux | grep align.*3 | wc | grep 2 +; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=arm-apple-darwin | grep align.*2 | wc | grep 4 %a = global bool true %b = global sbyte 1 |