Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s
      2 
      3 @g1 = private global i8 1
      4 define i8* @get_g1() {
      5 ; CHECK: get_g1:
      6 ; CHECK: leaq .Lg1(%rip), %rax
      7   ret i8* @g1
      8 }
      9