Revert r102300/102301, which serious broke objc apps.
authorChris Lattner <sabre@nondot.org>
Mon, 26 Apr 2010 18:30:45 +0000 (18:30 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 26 Apr 2010 18:30:45 +0000 (18:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102359 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/AsmPrinter.cpp
test/CodeGen/X86/alignment.ll [deleted file]
test/CodeGen/X86/unaligned-load.ll
test/FrontendC/cstring-align.c

index 08e2ed60a39301b3348f60fef357bf00c746b7a6..4660e1b2ccd650e9d8ff42bd3b4b1e2ed216266a 100644 (file)
@@ -285,7 +285,7 @@ void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
   OutStreamer.SwitchSection(TheSection);
 
   EmitLinkage(GV->getLinkage(), GVSym);
-  EmitAlignment(AlignLog, GV, AlignLog);
+  EmitAlignment(AlignLog, GV);
 
   if (isVerbose()) {
     WriteAsOperand(OutStreamer.GetCommentOS(), GV,
@@ -987,7 +987,7 @@ bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
   unsigned Align = Log2_32(TD->getPointerPrefAlignment());
   if (GV->getName() == "llvm.global_ctors") {
     OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
-    EmitAlignment(Align);
+    EmitAlignment(Align, 0);
     EmitXXStructorList(GV->getInitializer());
     
     if (TM.getRelocationModel() == Reloc::Static &&
@@ -1001,7 +1001,7 @@ bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
   
   if (GV->getName() == "llvm.global_dtors") {
     OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
-    EmitAlignment(Align);
+    EmitAlignment(Align, 0);
     EmitXXStructorList(GV->getInitializer());
 
     if (TM.getRelocationModel() == Reloc::Static &&
diff --git a/test/CodeGen/X86/alignment.ll b/test/CodeGen/X86/alignment.ll
deleted file mode 100644 (file)
index e4ac2a0..0000000
+++ /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
index a99af0605b12d4a3c948f0d680281e7e73c951a9..e210531068ec703b9864f74b0b0c66692215b40a 100644 (file)
@@ -28,9 +28,8 @@ return:
 
 declare void @llvm.memcpy.i64(i8* nocapture, i8* nocapture, i64, i32) nounwind
 
-; CORE2: .section
-; CORE2: .align  4
+; CORE2: .align  3
 ; CORE2-NEXT: _.str1:
 ; CORE2-NEXT: .asciz "DHRYSTONE PROGRAM, SOME STRING"
-; CORE2: .align 4
+; CORE2: .align 3
 ; CORE2-NEXT: _.str3:
index b9ec281f5677d4328e6191a5000ad770f503e4fc..715d0f31269057726f220cec9dbb0608121b710b 100644 (file)
@@ -1,5 +1,6 @@
 // RUN: %llvmgcc %s -c -Os -m32 -emit-llvm -o - | llc -march=x86 -mtriple=i386-apple-darwin10 | FileCheck %s -check-prefix=DARWIN32
 // RUN: %llvmgcc %s -c -Os -m64 -emit-llvm -o - | llc -march=x86-64 -mtriple=x86_64-apple-darwin10 | FileCheck %s -check-prefix=DARWIN64
+// XFAIL: *
 // XTARGET: darwin
 
 extern void func(const char *, const char *);
@@ -8,10 +9,10 @@ void long_function_name() {
   func("%s: the function name", __func__);
 }
 
-// DARWIN64: .align 4
+// DARWIN64: .align 3
 // DARWIN64: ___func__.
 // DARWIN64: .asciz "long_function_name"
 
-// DARWIN32: .align 4
+// DARWIN32: .align 2
 // DARWIN32: ___func__.
 // DARWIN32: .asciz "long_function_name"