[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / Transforms / IPConstantProp / naked-return.ll
blob3a2dedafcd3758b002c3068eb59a1c3864c8c10d
1 ; RUN: opt -ipsccp -S %s | FileCheck %s
2 ; RUN: opt -ipconstprop -S %s | FileCheck %s
4 target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
5 target triple = "i686-pc-windows-msvc19.0.24215"
7 define i32 @dipsy(i32, i32) local_unnamed_addr #0 {
8 BasicBlock0:
9   call void asm "\0D\0Apushl %ebp\0D\0Amovl 8(%esp),%eax\0D\0Amovl 12(%esp), %ebp\0D\0Acalll *%eax\0D\0Apopl %ebp\0D\0Aretl\0D\0A", ""()
10   ret i32 0
13 define void @tinkywinky(i32, i32, i32) local_unnamed_addr #0 {
14 BasicBlock1:
15   call void asm "\0D\0A    movl 12(%esp), %ebp\0D\0A    movl 4(%esp), %eax\0D\0A    movl 8(%esp), %esp\0D\0A    jmpl *%eax\0D\0A", ""()
16   ret void
19 define void @patatino(i32, i32, i32) local_unnamed_addr #1 {
20 bb:
21   %3 = tail call i32 @dipsy(i32 %0, i32 %1) #0
22 ; Check that we don't accidentally propagate zero.
23 ; CHECK: @tinkywinky(i32 %3, i32 %2, i32 %1) #0
24   tail call void @tinkywinky(i32 %3, i32 %2, i32 %1) #0
25   ret void
28 attributes #0 = { naked }
29 attributes #1 = { "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" }