Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions llvm/test/Verifier/denormal-fp-math.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s

; CHECK-NOT: invalid value for 'denormal-fp-math' attribute
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Too fragile negative check on exact string. Use implicit-check-not for the broadest error check. Or just delete the valid case, verifier tests usually don't include them (those go in test/Assembler)

define float @test_denormal_fp_math_valid() "denormal-fp-math"="ieee,ieee" {
ret float 1.0
}
Expand Down
Loading