diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-25 07:43:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-25 07:43:40 +0000 |
commit | 9b83727cfee6b763ea6c16c2096ad7b041395785 (patch) | |
tree | 7454f3d204df60a5daa8c7e444b87de1e3c6463e /llvm | |
parent | 0375d2fbe7ed468a89c6dc5dc5dca4dd4ae53420 (diff) | |
download | bcm5719-llvm-9b83727cfee6b763ea6c16c2096ad7b041395785.tar.gz bcm5719-llvm-9b83727cfee6b763ea6c16c2096ad7b041395785.zip |
we removed support for darwin8 tools.
llvm-svn: 94414
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/CodeGen/X86/aligned-comm.ll | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/aligned-comm.ll b/llvm/test/CodeGen/X86/aligned-comm.ll index c0f3a81c4d6..7715869ed99 100644 --- a/llvm/test/CodeGen/X86/aligned-comm.ll +++ b/llvm/test/CodeGen/X86/aligned-comm.ll @@ -1,8 +1,6 @@ ; RUN: llc < %s -march=x86 ; 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=i386-apple-darwin8 | not grep {7} -; Darwin 9+ should get alignment on common symbols. Darwin8 does -; not support this. +; Darwin 9+ should get alignment on common symbols. @array = common global [4128 x i32] zeroinitializer, align 128 |