1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/CodeGen/X86/x86-64-pic.ll

9 lines
192 B
LLVM
Raw Normal View History

; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s
@g1 = private global i8 1
define i8* @get_g1() {
; CHECK: get_g1:
; CHECK: leaq .Lg1(%rip), %rax
ret i8* @g1
}