brintos

brintos / llvm-project-archived public Read only

0
0
Text · 559 B · d0b29e2 Raw
18 lines · plain
1; RUN: llc -verify-machineinstrs -mcpu=pwr7 -O0 < %s | FileCheck %s2 3target 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-v128:128:128-n32:64"4target triple = "powerpc64-unknown-linux-gnu"5 6@ld2 = common global ppc_fp128 0xM00000000000000000000000000000000, align 167declare void @other(ppc_fp128 %tmp70)8 9define void @bug() {10entry:11  %x = load ppc_fp128, ptr @ld2, align 1612  %tmp70 = frem ppc_fp128 0xM00000000000000000000000000000000, %x13  call void @other(ppc_fp128 %tmp70)14  unreachable15}16 17; CHECK: bl fmodl18