Lines Matching full:attributes
5 llvm.func @unsafe_fp_math_func_true() attributes {unsafe_fp_math = true} {
8 // CHECK: attributes #[[ATTRS]] = { "unsafe-fp-math"="true" }
14 llvm.func @unsafe_fp_math_func_false() attributes {unsafe_fp_math = false} {
17 // CHECK: attributes #[[ATTRS]] = { "unsafe-fp-math"="false" }
23 llvm.func @no_infs_fp_math_func_true() attributes {no_infs_fp_math = true} {
26 // CHECK: attributes #[[ATTRS]] = { "no-infs-fp-math"="true" }
32 llvm.func @no_infs_fp_math_func_false() attributes {no_infs_fp_math = false} {
35 // CHECK: attributes #[[ATTRS]] = { "no-infs-fp-math"="false" }
41 llvm.func @no_nans_fp_math_func_true() attributes {no_nans_fp_math = true} {
44 // CHECK: attributes #[[ATTRS]] = { "no-nans-fp-math"="true" }
50 llvm.func @no_nans_fp_math_func_false() attributes {no_nans_fp_math = false} {
53 // CHECK: attributes #[[ATTRS]] = { "no-nans-fp-math"="false" }
59 llvm.func @approx_func_fp_math_func_true() attributes {approx_func_fp_math = true} {
62 // CHECK: attributes #[[ATTRS]] = { "approx-func-fp-math"="true" }
68 llvm.func @approx_func_fp_math_func_false() attributes {approx_func_fp_math = false} {
71 // CHECK: attributes #[[ATTRS]] = { "approx-func-fp-math"="false" }
77 llvm.func @no_signed_zeros_fp_math_func_true() attributes {no_signed_zeros_fp_math = true} {
80 // CHECK: attributes #[[ATTRS]] = { "no-signed-zeros-fp-math"="true" }
86 llvm.func @no_signed_zeros_fp_math_func_false() attributes {no_signed_zeros_fp_math = false} {
89 // CHECK: attributes #[[ATTRS]] = { "no-signed-zeros-fp-math"="false" }
95 llvm.func @denormal_fp_math_func_ieee() attributes {denormal_fp_math = "ieee"} {
98 // CHECK: attributes #[[ATTRS]] = { "denormal-fp-math"="ieee" }
104 llvm.func @denormal_fp_math_f32_func_preserve_sign() attributes {denormal_fp_math_f32 = "preserve-sign"} {
107 // CHECK: attributes #[[ATTRS]] = { "denormal-fp-math-f32"="preserve-sign" }
113 llvm.func @fp_contract_func_fast() attributes {fp_contract = "fast"} {
116 // CHECK: attributes #[[ATTRS]] = { "fp-contract"="fast" }