Files
clang-p2996/llvm/test/CodeGen/X86/pr22019.ll
Nikita Popov 2f448bf509 [X86] Migrate tests to use opaque pointers (NFC)
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).
2022-06-22 14:38:25 +02:00

24 lines
487 B
LLVM

; RUN: llc < %s | FileCheck %s
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
module asm "pselect = __pselect"
module asm "var = __var"
module asm "alias = __alias"
; CHECK: .set pselect, __pselect
; CHECK: .set var, __var
; CHECK: .set alias, __alias
; CHECK: pselect:
; CHECK: retq
define void @pselect() {
ret void
}
; CHECK: var:
; CHECK: .long 0
@var = global i32 0
; CHECK: .set alias, var
@alias = alias i32, ptr @var