Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / X86 / addr-label-difference.ll
blobbfef0ac77bc15bda7987fd03e14ccd08ba0a3f65
1 ; RUN: llc < %s | FileCheck %s
2 ; PR5929
4 ; CHECK: .section        __TEXT,__const
6 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32"
7 target triple = "i386-apple-darwin10.0"
9 ; This array should go into the __TEXT,__const section, not into the
10 ; __DATA,__const section, because the elements don't need relocations.
11 @test.array = internal unnamed_addr constant [3 x i32] [i32 sub (i32 ptrtoint (ptr blockaddress(@test, %foo) to i32), i32 ptrtoint (ptr blockaddress(@test, %foo) to i32)), i32 sub (i32 ptrtoint (ptr blockaddress(@test, %bar) to i32), i32 ptrtoint (ptr blockaddress(@test, %foo) to i32)), i32 sub (i32 ptrtoint (ptr blockaddress(@test, %hack) to i32), i32 ptrtoint (ptr blockaddress(@test, %foo) to i32))] ; <ptr> [#uses=1]
13 define void @test(i32 %i) nounwind ssp {
14 entry:
15   call void @test(i32 1)
16   br label %foo
18 foo:
19   call void @test(i32 1)
20   br label %bar
22 bar:
23   call void @test(i32 1)
24   br label %hack
26 hack:
27   call void @test(i32 1)
28   ret void