mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
12 lines
299 B
LLVM
12 lines
299 B
LLVM
|
; RUN: llc -mtriple x86_64-pc-linux-gnu < %s | FileCheck %s
|
||
|
|
||
|
$f = comdat any
|
||
|
@v = global i32 0, comdat $f
|
||
|
define void @f() comdat $f {
|
||
|
ret void
|
||
|
}
|
||
|
; CHECK: .section .text.f,"axG",@progbits,f,comdat
|
||
|
; CHECK: .globl f
|
||
|
; CHECK: .section .bss.v,"aGw",@nobits,f,comdat
|
||
|
; CHECK: .globl v
|