1; RUN: llc -march=mipsel -mattr=mips16 -relocation-model=static < %s | FileCheck %s -check-prefix=CHECK-STATIC16 2 3@x = common global float 0.000000e+00, align 4 4 5define void @foo() nounwind { 6entry: 7 %0 = load float, float* @x, align 4 8 %1 = load float, float* @x, align 4 9 %mul = fmul float %0, %1 10 store float %mul, float* @x, align 4 11; CHECK-STATIC16: jal __mips16_mulsf3 12 ret void 13} 14