Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / X86 / rip-rel-lea.ll
blob2bcdb0202d76b5314d375c854fc5f6c38d771066
1 ; RUN: llc < %s -mtriple=x86_64-pc-linux-gnu -relocation-model=pic | FileCheck %s -check-prefix=PIC64
2 ; RUN: llc < %s -mtriple=x86_64-pc-linux-gnux32 -relocation-model=pic | FileCheck %s -check-prefix=PICX32
3 ; RUN: llc < %s -mtriple=i686-pc-linux-gnu -relocation-model=pic | FileCheck %s -check-prefix=PIC32
5 ; Use %rip-relative addressing even in static mode on x86-64, because
6 ; it has a smaller encoding.
8 @a = internal global double 3.4
9 define ptr @foo() nounwind {
10   ret ptr @a
11   
12 ; PIC64:    leaq        a(%rip)
13 ; PICX32:   leal        a(%rip)
14 ; PIC32:    leal        a@GOTOFF(%eax)