repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
ARM
/
naked-no-prolog.ll
blob
f6b6cf2993276eae4e289ff93900446c05e34071
1
; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a7 -verify-machineinstrs %s -o - | FileCheck %s
2
3
%struct.S = type { [65 x i8] }
4
5
define void @naked_no_prologue(ptr byval(%struct.S) align 4 %0) naked noinline nounwind optnone {
6
; CHECK-NOT: stm
7
; CHECK-NOT: str
8
9
entry:
10
ret void
11
unreachable
12
}
13