1; RUN: llc < %s | FileCheck %s 2; PR5929 3 4; CHECK: .section __TEXT,__const 5 6target 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" 7target triple = "i386-apple-darwin10.0" 8 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] 12 13define void @test(i32 %i) nounwind ssp { 14entry: 15 call void @test(i32 1) 16 br label %foo 17 18foo: 19 call void @test(i32 1) 20 br label %bar 21 22bar: 23 call void @test(i32 1) 24 br label %hack 25 26hack: 27 call void @test(i32 1) 28 ret void 29} 30