From 9398197ef1c0db9796cf602f5b2ae8dbde3c86c3 Mon Sep 17 00:00:00 2001 From: Cameron Zwarich Date: Wed, 13 Apr 2011 20:36:04 +0000 Subject: Fix a regression caused by r102515 where explicit alignment on globals is ignored. There was a test to catch this, but it was just blindly updated in a large change. This fixes another part of . llvm-svn: 129466 --- llvm/test/CodeGen/X86/alignment.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/test/CodeGen/X86/alignment.ll') diff --git a/llvm/test/CodeGen/X86/alignment.ll b/llvm/test/CodeGen/X86/alignment.ll index 9678e6df740..7e911159790 100644 --- a/llvm/test/CodeGen/X86/alignment.ll +++ b/llvm/test/CodeGen/X86/alignment.ll @@ -6,7 +6,7 @@ ; CHECK: .bss ; CHECK: .globl GlobalA -; CHECK: .align 16 +; CHECK: .align 8 ; CHECK: GlobalA: ; CHECK: .zero 384 @@ -15,12 +15,12 @@ ; PR6921 @GlobalB = common global { [384 x i8] } zeroinitializer, align 8 -; CHECK: .comm GlobalB,384,16 +; CHECK: .comm GlobalB,384,8 @GlobalC = common global { [384 x i8] } zeroinitializer, align 2 -; CHECK: .comm GlobalC,384,16 +; CHECK: .comm GlobalC,384,2 -- cgit v1.2.3