[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / GlobalOpt / naked_functions.ll
blob8dd63699ab5a04d6356ac25244c33cc4e068e231
1 ; RUN: opt < %s -globalopt -S | FileCheck %s
3 ; Check that naked functions don't get marked with fast calling conventions
5 @g = common global i32 0, align 4
7 define i32 @bar() {
8 entry:
9   %call = call i32 @foo(i32* @g)
10 ; CHECK: %call = call i32 @foo(i32* @g)
11   ret i32 %call
14 define internal i32 @foo(i32*) #0 {
15 entry:
16   %retval = alloca i32, align 4
17   call void asm sideeffect "ldr r0, [r0] \0Abx lr        \0A", ""()
18   unreachable
21 ; CHECK: define internal i32 @foo(i32* %0)
23 attributes #0 = { naked }