to: .quad X even on a 32-bit system, where X is not 64-bits. There isn't much that we can do here, so we just print: .quad ((X) & 4294967295) instead. llvm-svn: 77818
9 lines
221 B
LLVM
9 lines
221 B
LLVM
; RUN: llvm-as < %s | llc -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
|