forked from OSchip/llvm-project
[WebAssembly] Remove fptosi(undef) and fptoui(undef) from reduced test case.
Pre-commit for D62811 - which adds DAG fpto[us]i(undef) --> undef constant fold llvm-svn: 362414
This commit is contained in:
parent
857de979a7
commit
985f2f48bd
|
@ -9,16 +9,16 @@
|
|||
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
||||
target triple = "wasm32-unknown-unknown"
|
||||
|
||||
define void @foo(i32* %p1) #0 {
|
||||
define void @foo(i32* %p1, float %f2) #0 {
|
||||
%a = atomicrmw min i32* undef, i32 42 seq_cst
|
||||
%v = fptoui float undef to i32
|
||||
%v = fptoui float %f2 to i32
|
||||
store i32 %v, i32* %p1
|
||||
ret void
|
||||
}
|
||||
|
||||
define void @bar(i32* %p1) #1 {
|
||||
define void @bar(i32* %p1, float %f2) #1 {
|
||||
%a = atomicrmw min i32* undef, i32 42 seq_cst
|
||||
%v = fptoui float undef to i32
|
||||
%v = fptoui float %f2 to i32
|
||||
store i32 %v, i32* %p1
|
||||
ret void
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue