add the most expedient hack to fix PR4619, along with a testcase.
[oota-llvm.git] / test / CodeGen / X86 / global-sections.ll
1 ; RUN: llvm-as < %s | llc -mtriple=i386-unknown-linux-gnu | FileCheck %s -check-prefix=LINUX
2
3 @G1 = common global i32 0
4
5 ; LINUX: .type   G1,@object
6 ; LINUX: .section .gnu.linkonce.b.G1,"aw",@nobits
7 ; LINUX: .comm  G1,4,4
8