mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
dc8446330f
this patch disables .lcomm in favour of '.local .comm' Patch by Kalle Raisklia! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100875 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
200 B
LLVM
8 lines
200 B
LLVM
; RUN: llc < %s -march=cellspu > %t1.s
|
|
; RUN: grep "\.section" %t1.s | grep "\.bss" | count 1
|
|
; CHECK-NOT: .lcomm
|
|
|
|
@bssVar = global i32 zeroinitializer
|
|
@localVar= internal global i32 zeroinitializer
|
|
|