1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -mtriple=amdgcn-amd-amdhsa -S -inline < %s | FileCheck %s
; RUN: opt -mtriple=amdgcn-amd-amdhsa -S -passes='cgscc(inline)' < %s | FileCheck %s
define i32 @func_default() #0 {
; CHECK-LABEL: @func_default(
; CHECK-NEXT: ret i32 0
;
ret i32 0
}
define i32 @func_denormal_fp_math_ieee_ieee() #1 {
; CHECK-LABEL: @func_denormal_fp_math_ieee_ieee(
; CHECK-NEXT: ret i32 0
;
ret i32 0
}
define i32 @func_denormal_fp_math_flush_flush() #2 {
; CHECK-LABEL: @func_denormal_fp_math_flush_flush(
; CHECK-NEXT: ret i32 0
;
ret i32 0
}
define i32 @call_func_ieee_ieee_from_flush_flush() #2 {
; CHECK-LABEL: @call_func_ieee_ieee_from_flush_flush(
; CHECK-NEXT: ret i32 0
;
%call = call i32 @func_denormal_fp_math_ieee_ieee()
ret i32 %call
}
define i32 @call_func_flush_flush_from_ieee_ieee() #1 {
; CHECK-LABEL: @call_func_flush_flush_from_ieee_ieee(
; CHECK-NEXT: [[CALL:%.*]] = call i32 @func_denormal_fp_math_flush_flush()
; CHECK-NEXT: ret i32 [[CALL]]
;
%call = call i32 @func_denormal_fp_math_flush_flush()
ret i32 %call
}
define i32 @func_denormal_fp_math_flush_ieee() #3 {
; CHECK-LABEL: @func_denormal_fp_math_flush_ieee(
; CHECK-NEXT: ret i32 0
;
ret i32 0
}
define i32 @func_denormal_fp_math_ieee_flush() #4 {
; CHECK-LABEL: @func_denormal_fp_math_ieee_flush(
; CHECK-NEXT: ret i32 0
;
ret i32 0
}
define i32 @call_func_flush_ieee_from_ieee_ieee() #1 {
; CHECK-LABEL: @call_func_flush_ieee_from_ieee_ieee(
; CHECK-NEXT: [[CALL:%.*]] = call i32 @func_denormal_fp_math_flush_ieee()
; CHECK-NEXT: ret i32 [[CALL]]
;
%call = call i32 @func_denormal_fp_math_flush_ieee()
ret i32 %call
}
define i32 @call_func_ieee_flush_from_ieee_ieee() #1 {
; CHECK-LABEL: @call_func_ieee_flush_from_ieee_ieee(
; CHECK-NEXT: [[CALL:%.*]] = call i32 @func_denormal_fp_math_ieee_flush()
; CHECK-NEXT: ret i32 [[CALL]]
;
%call = call i32 @func_denormal_fp_math_ieee_flush()
ret i32 %call
}
attributes #0 = { nounwind }
attributes #1 = { nounwind "denormal-fp-math"="ieee,ieee" }
attributes #2 = { nounwind "denormal-fp-math"="preserve-sign,preserve-sign" }
attributes #3 = { nounwind "denormal-fp-math"="preserve-sign,ieee" }
attributes #4 = { nounwind "denormal-fp-math"="ieee,preserve-sign" }
|