Files
clang-p2996/llvm/test/CodeGen/Thumb2/frameless.ll
gxlayer 4a2bd78f5b [ARM] Fix -mno-omit-leaf-frame-pointer flag doesn't works on 32-bit ARM (#109628)
The -mno-omit-leaf-frame-pointer flag works on 32-bit ARM architectures
and addresses the bug reported in #108019
2024-10-17 20:25:06 +08:00

7 lines
206 B
LLVM

; RUN: llc < %s -mtriple=thumbv7-apple-darwin -frame-pointer=none | not grep mov
; RUN: llc < %s -mtriple=thumbv7-linux -frame-pointer=none | not grep mov
define void @t() nounwind readnone {
ret void
}