summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/alignment.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-26 18:30:45 +0000
committerChris Lattner <sabre@nondot.org>2010-04-26 18:30:45 +0000
commitf74e25f60c8c63b819ff603cb4c3c18424dc87a7 (patch)
tree27618d33d803dd7a7239da94ac0861517e3a1d58 /test/CodeGen/X86/alignment.ll
parent8581c260d3595fd78ce9f1585c85bea545fce5f3 (diff)
downloadllvm-f74e25f60c8c63b819ff603cb4c3c18424dc87a7.tar.gz
llvm-f74e25f60c8c63b819ff603cb4c3c18424dc87a7.tar.bz2
llvm-f74e25f60c8c63b819ff603cb4c3c18424dc87a7.tar.xz
Revert r102300/102301, which serious broke objc apps.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102359 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/alignment.ll')
-rw-r--r--test/CodeGen/X86/alignment.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/X86/alignment.ll b/test/CodeGen/X86/alignment.ll
deleted file mode 100644
index e4ac2a072c..0000000000
--- a/test/CodeGen/X86/alignment.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: llc %s -o - -mtriple=x86_64-linux-gnu | FileCheck %s
-
-; This can get rounded up to the preferred alignment (16).
-; PR6921
-@GlobalA = global { [384 x i8] } zeroinitializer, align 8
-
-; CHECK: .bss
-; CHECK: .globl GlobalA
-; CHECK: .align 16
-; CHECK: GlobalA:
-; CHECK: .zero 384
-
-; Common variables should also get rounded up to the preferred alignment (16).
-@GlobalB = common global { [384 x i8] } zeroinitializer, align 8
-
-; CHECK: .comm GlobalB,384,16 \ No newline at end of file