diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/aligned-comm.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/aligned-comm.ll | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/aligned-comm.ll b/llvm/test/CodeGen/X86/aligned-comm.ll index 1192b72c48d..ba6b670eff5 100644 --- a/llvm/test/CodeGen/X86/aligned-comm.ll +++ b/llvm/test/CodeGen/X86/aligned-comm.ll @@ -1,6 +1,11 @@ -; RUN: llc < %s -mtriple=i686-- -; RUN: llc < %s -mtriple=i386-apple-darwin10 | grep "array,16512,7" -; RUN: llc < %s -mtriple=i386-apple-darwin9 | grep "array,16512,7" +; RUN: llc < %s -mtriple=i686-- | FileCheck %s --check-prefix=i686 +; RUN: llc < %s -mtriple=i386-apple-darwin10 | FileCheck %s --check-prefix=DARWIN +; RUN: llc < %s -mtriple=i386-apple-darwin9 | FileCheck %s --check-prefix=DARWIN +; RUN: llc < %s -mtriple=i386-apple-darwin8 | FileCheck %s --check-prefix=DARWIN8 + +; i686: array,16512 +; DARWIN8: array,16512 +; DARWIN: array,16512,7 ; Darwin 9+ should get alignment on common symbols. @array = common global [4128 x i32] zeroinitializer, align 128 |