mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
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:
parent
4c5fb1a311
commit
ac834e7a5f
@ -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;
|
||||
}
|
||||
|
||||
|
5
test/CodeGen/CellSPU/bss.ll
Normal file
5
test/CodeGen/CellSPU/bss.ll
Normal 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user