10 lines · plain
1; RUN: llc -denormal-fp-math=dynamic --denormal-fp-math-f32=preserve-sign -stop-after=finalize-isel < %s | FileCheck %s2 3; Check that the command line flag annotates the IR with the4; appropriate attributes.5 6; CHECK: attributes #0 = { "denormal-fp-math"="dynamic,dynamic" "denormal-fp-math-f32"="preserve-sign,preserve-sign" }7define float @foo(float %var) {8 ret float %var9}10