[clang] StmtPrinter: Handle DeclRefExpr to a Decomposition (#125001)
[llvm-project.git] / llvm / test / Transforms / FunctionAttrs / naked_functions.ll
blob76be910800c4ce06b2a2814608bc34c378179f59
1 ; RUN: opt -S -passes=function-attrs %s | FileCheck %s
2 ; RUN: opt -S -passes='function-attrs' %s | FileCheck %s
4 ; Don't change the attributes of parameters of naked functions, in particular
5 ; don't mark them as readnone
7 @g = common global i32 0, align 4
9 define i32 @bar() {
10 entry:
11   %call = call i32 @foo(ptr @g)
12 ; CHECK: %call = call i32 @foo(ptr @g)
13   ret i32 %call
16 define internal i32 @foo(ptr) #0 {
17 entry:
18   %retval = alloca i32, align 4
19   call void asm sideeffect "ldr r0, [r0] \0Abx lr        \0A", ""()
20   unreachable
23 ; CHECK: define internal i32 @foo(ptr %0)
25 attributes #0 = { naked }