[llvm] [llvm] Consistently respect `naked` fn attribute in `TargetFrameLowering::hasFP()` (PR #106014)
Alexander Richardson via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 29 13:13:34 PDT 2024
================
@@ -0,0 +1,11 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
+; RUN: llc < %s -mtriple aarch64 | FileCheck %s -check-prefixes=NAKED
+
+define dso_local void @_start() naked "frame-pointer"="all" {
+; NAKED-LABEL: _start:
+; NAKED: // %bb.0:
+; NAKED-NEXT: mov w8, #42 // =0x2a
+; NAKED-NEXT: blr x8
+ call void inttoptr (i32 42 to ptr)()
----------------
arichardson wrote:
Ah fair enough, I guess we could also just do something like `call void @llvm.trap() `.
Do you think it would make sense to show the code generation for the same function without the naked attribute?
https://github.com/llvm/llvm-project/pull/106014
More information about the llvm-commits
mailing list