[Mlir-commits] [mlir] [MLIR] Adding 'no_inline' and 'always_inline' attributes on LLMV::CallOp (PR #133726)
Christian Ulmann
llvmlistbot at llvm.org
Mon Mar 31 22:48:40 PDT 2025
================
@@ -0,0 +1,29 @@
+; RUN: mlir-translate -import-llvm -split-input-file %s | FileCheck %s
+
+; CHECK-LABEL: @test_call_noinline
+; CHECK: llvm.call @f() {no_inline} : () -> ()
+define void @test_call_noinline() {
+ call void @f() #0
+ ret void
+}
+
+define void @f() {
+ ret void
+}
----------------
Dinistro wrote:
```suggestion
declare void @f()
```
Nit: No need to make these definitions.
https://github.com/llvm/llvm-project/pull/133726
More information about the Mlir-commits
mailing list