brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 473d669 Raw
28 lines · plain
1; RUN: llc -verify-machineinstrs -O0 < %s | FileCheck %s2 3; Verify that a constant with an initializer that may turn into a dynamic4; relocation is not placed in .rodata, but rather in .data.rel.ro.5 6target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"7target triple = "powerpc64-unknown-linux-gnu"8 9%struct.x = type { ptr }10%struct._IO_FILE = type { i32, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, i32, i32, i64, i16, i8, [1 x i8], ptr, i64, ptr, ptr, ptr, ptr, i64, i32, [20 x i8] }11%struct._IO_marker = type { ptr, ptr, i32 }12 13@_ZL1y = internal constant %struct.x { ptr @fread }, align 814 15; Function Attrs: nounwind16define ptr @_Z3foov() #0 {17entry:18  ret ptr @_ZL1y19}20 21declare i64 @fread(ptr, i64, i64, ptr) #122 23; CHECK: .section .data.rel.ro24; CHECK: .quad fread25 26attributes #0 = { nounwind "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "use-soft-float"="false" }27attributes #1 = { "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "use-soft-float"="false" }28