diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-04-12 01:07:16 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-04-12 01:07:16 +0000 |
commit | 25a23bc0effd5af3e86fea34efd5260bc1b3cd97 (patch) | |
tree | 2b43708f25b484dbef1a68a8faaa897bf0151f86 /llvm/test/CodeGen/X86/code_placement_align_all.ll | |
parent | c3b0f50ac25b2277ae8712abc03485923c09716c (diff) | |
download | bcm5719-llvm-25a23bc0effd5af3e86fea34efd5260bc1b3cd97.tar.gz bcm5719-llvm-25a23bc0effd5af3e86fea34efd5260bc1b3cd97.zip |
Fix the test on linux by setting the triple and the align format
llvm-svn: 179354
Diffstat (limited to 'llvm/test/CodeGen/X86/code_placement_align_all.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/code_placement_align_all.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/code_placement_align_all.ll b/llvm/test/CodeGen/X86/code_placement_align_all.ll index 2a36a3a3af5..1e5e8f780b7 100644 --- a/llvm/test/CodeGen/X86/code_placement_align_all.ll +++ b/llvm/test/CodeGen/X86/code_placement_align_all.ll @@ -1,9 +1,9 @@ -; RUN: llc -march=x86 -align-all-blocks=16 < %s | FileCheck %s +; RUN: llc -mcpu=corei7 -mtriple=x86_64-linux -align-all-blocks=16 < %s | FileCheck %s ;CHECK: foo -;CHECK: .align 16, 0x90 -;CHECK: .align 16, 0x90 -;CHECK: .align 16, 0x90 +;CHECK: .align 65536, 0x90 +;CHECK: .align 65536, 0x90 +;CHECK: .align 65536, 0x90 ;CHECK: ret define i32 @foo(i32 %t, i32 %l) nounwind readnone ssp uwtable { %1 = icmp eq i32 %t, 0 |