mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-20 14:29:27 +00:00
to MCExpr then emit them through MCStreamer with EmitValue. I think all global variable initializers are now going through mcstreamer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94293 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
205 B
LLVM
9 lines
205 B
LLVM
; RUN: llc < %s -mtriple=i386-linux | FileCheck %s
|
|
%union.x = type { i64 }
|
|
|
|
; CHECK: .globl r
|
|
; CHECK: r:
|
|
; CHECK: .quad r&4294967295
|
|
|
|
@r = global %union.x { i64 ptrtoint (%union.x* @r to i64) }, align 4
|