Files
clang-p2996/llvm/test/CodeGen/X86/prefixdata.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

30 lines
623 B
LLVM

; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck --check-prefix=MACHO %s
; RUN: llc < %s -mtriple=x86_64-pc-linux | FileCheck --check-prefix=ELF %s
@i = linkonce_odr global i32 1
; MACHO: ltmp0:
; MACHO-NEXT: .long 1
; MACHO-NEXT: .alt_entry _f
; MACHO-NEXT: _f:
; ELF: .type f,@function
; ELF-NEXT: .long 1
; ELF-NEXT: # 0x1
; ELF-NEXT: f:
define void @f() prefix i32 1 {
ret void
}
; MACHO: ltmp1:
; MACHO-NEXT: .quad _i
; MACHO-NEXT: .alt_entry _g
; MACHO-NEXT: _g:
; ELF: .type g,@function
; ELF-NEXT: .quad i
; ELF-NEXT: g:
define void @g() prefix ptr @i {
ret void
}
; MACHO: .subsections_via_symbols