Test updates were performed using: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only the test updates where the test passed without further modification (which is almost all of them, as the backend is largely pointer-type agnostic).
15 lines
358 B
LLVM
15 lines
358 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 (ptr @r to i64) }, align 4
|
|
|
|
; CHECK: .globl x
|
|
; CHECK: x:
|
|
; CHECK: .quad ((0+1)&4294967295)*3
|
|
|
|
@x = global i64 mul (i64 3, i64 ptrtoint (ptr getelementptr (i2, ptr null, i64 1) to i64))
|