[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / Transforms / ArgumentPromotion / naked_functions.ll
blob66600005c0ad2276bc40f18388a61a294891d126
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* %0)
23 attributes #0 = { naked }