mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-16 11:24:39 +00:00
for now. Make the section switching directives more consistent by not including \n and including \t for them all. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77107 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
852 B
LLVM
43 lines
852 B
LLVM
; RUN: llvm-as < %s | llc -mtriple=i386-unknown-linux-gnu | FileCheck %s -check-prefix=LINUX
|
|
; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9.7 | FileCheck %s -check-prefix=DARWIN
|
|
|
|
|
|
; int G1;
|
|
@G1 = common global i32 0
|
|
|
|
; LINUX: .type G1,@object
|
|
; LINUX: .section .gnu.linkonce.b.G1,"aw",@nobits
|
|
; LINUX: .comm G1,4,4
|
|
|
|
; DARWIN: .comm _G1,4,2
|
|
|
|
|
|
|
|
|
|
; const int G2 __attribute__((weak)) = 42;
|
|
@G2 = weak_odr constant i32 42
|
|
|
|
|
|
; TODO: linux drops this into .rodata, we drop it into ".gnu.linkonce.r.G2"
|
|
|
|
; DARWIN: .section __TEXT,__const_coal,coalesced
|
|
; DARWIN: _G2:
|
|
; DARWIN: .long 42
|
|
|
|
|
|
; int * const G3 = &G1;
|
|
@G3 = constant i32* @G1
|
|
|
|
; DARWIN: .const_data
|
|
; DARWIN: .globl _G3
|
|
; DARWIN: _G3:
|
|
; DARWIN: .long _G1
|
|
|
|
|
|
; _Complex long long const G4 = 34;
|
|
@G4 = constant {i64,i64} { i64 34, i64 0 }
|
|
|
|
; DARWIN: .const
|
|
; DARWIN: _G4:
|
|
; .long 34
|