Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / Verifier / llvm.fptrunc.round.ll
blob49cc47f32fed832e4bf022fa86d1bdb7aef2f4c4
1 ; RUN: not opt -passes=verify < %s 2>&1 | FileCheck %s
3 declare half @llvm.fptrunc.round(float, metadata)
5 define void @test_fptrunc_round_dynamic(float %a) {
6 ; CHECK: unsupported rounding mode argument
7   %res = call half @llvm.fptrunc.round(float %a, metadata !"round.dynamic")
8 ; CHECK: unsupported rounding mode argument
9   %res1 = call half @llvm.fptrunc.round(float %a, metadata !"round.test")
10 ; CHECK: invalid value for llvm.fptrunc.round metadata operand (the operand should be a string)
11   %res2 = call half @llvm.fptrunc.round(float %a, metadata i32 5)
12   ret void