fix bss section printing for cell, patch by Kalle Raiskila!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97814 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2010-03-05 18:55:36 +00:00
parent 4c5fb1a311
commit ac834e7a5f
2 changed files with 8 additions and 0 deletions

View File

@ -34,5 +34,8 @@ SPULinuxMCAsmInfo::SPULinuxMCAsmInfo(const Target &T, const StringRef &TT) {
// Exception handling is not supported on CellSPU (think about it: you only
// have 256K for code+data. Would you support exception handling?)
ExceptionsType = ExceptionHandling::None;
// SPU assembly requires ".section" before ".bss"
UsesELFSectionDirectiveForBSS = true;
}

View File

@ -0,0 +1,5 @@
; RUN: llc < %s -march=cellspu > %t1.s
; RUN: grep "\.section" %t1.s | grep "\.bss" | count 1
@bssVar = global i32 zeroinitializer