This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git] / test / CodeGen / X86 / stdcall-notailcall.ll
blob8e33c30bf2932b228024c4ab8891a727d643620f
1 ; RUN: llc -mtriple=i386-apple-darwin11 -O2 < %s | FileCheck %s
3 %struct.I = type { i32 (...)** }
4 define x86_stdcallcc void @bar(%struct.I* nocapture %this) ssp align 2 {
5 ; CHECK: bar:
6 ; CHECK-NOT: jmp
7 ; CHECK: ret $4
8 entry:
9   tail call void @foo()
10   ret void
13 declare void @foo()