1; RUN: llc -verify-machineinstrs -mcpu=pwr7 -O0 < %s | FileCheck %s
2
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 16
7declare void @other(ppc_fp128 %tmp70)
8
9define void @bug() {
10entry:
11  %x = load ppc_fp128, ppc_fp128* @ld2, align 16
12  %tmp70 = frem ppc_fp128 0xM00000000000000000000000000000000, %x
13  call void @other(ppc_fp128 %tmp70)
14  unreachable
15}
16
17; CHECK: bl fmodl
18