1 ; RUN: not llc < %s 2>&1 | FileCheck %s
3 ; CHECK: error: fast-math-flags specified for call without floating-point scalar or vector return type
4 define i64 @test_lrintf(float %f) {
6 %0 = tail call fast i64 @llvm.lrint.i64.f32(float %f)
10 declare i64 @llvm.lrint.i64.f32(float)