[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Other / opt-override-denormal-fp-math.ll
blobf108ac64045e2134621cb3fdab29c32210e5ada4
1 ; RUN: opt -S -denormal-fp-math=ieee %s | FileCheck -check-prefixes=IEEE,ALL %s
2 ; RUN: opt -S -denormal-fp-math=preserve-sign %s | FileCheck -check-prefixes=PRESERVESIGN,ALL %s
3 ; RUN: opt -S -denormal-fp-math=positive-zero %s | FileCheck -check-prefixes=POSITIVEZERO,ALL %s
5 ; ALL: @no_denormal_fp_math_attr() [[NOATTR:#[0-9]+]] {
6 define i32 @no_denormal_fp_math_attr() #0 {
7 entry:
8   ret i32 0
11 ; ALL: denormal_fp_math_attr_preserve_sign_ieee() [[ATTR:#[0-9]+]] {
12 define i32 @denormal_fp_math_attr_preserve_sign_ieee() #1 {
13 entry:
14   ret i32 0
17 ; ALL-DAG: attributes [[ATTR]] = { nounwind "denormal-fp-math"="preserve-sign,ieee" }
18 ; IEEE-DAG: attributes [[NOATTR]] = { nounwind "denormal-fp-math"="ieee,ieee" }
19 ; PRESERVESIGN-DAG: attributes [[NOATTR]] = { nounwind "denormal-fp-math"="preserve-sign,preserve-sign" }
20 ; POSITIVEZERO-DAG: attributes [[NOATTR]] = { nounwind "denormal-fp-math"="positive-zero,positive-zero" }
22 attributes #0 = { nounwind }
23 attributes #1 = { nounwind "denormal-fp-math"="preserve-sign,ieee" }