[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / ArgumentPromotion / naked_functions.ll
blob70a63f4d02eaf4b1b4b6bc6d60419af9db13151a
1 ; RUN: opt < %s -argpromotion -S | FileCheck %s
3 ; Don't promote paramaters of/arguments to naked functions
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*)
23 attributes #0 = { naked }