[llvm] aarch64: fix testcase (PR #75723)
Nathan Sidwell via llvm-commits
llvm-commits at lists.llvm.org
Sat Dec 16 16:52:36 PST 2023
https://github.com/urnathan created https://github.com/llvm/llvm-project/pull/75723
Add missing < %s to RUN line.
Is there an obvious rule allowing me to just commit this?
>From f2f2100d19a2241adeb8866b42ec16862ba48623 Mon Sep 17 00:00:00 2001
From: Nathan Sidwell <nathan at acm.org>
Date: Sat, 16 Dec 2023 18:42:30 -0500
Subject: [PATCH] aarch64: fix testcase
Add missing < %s to RUN line.
---
.../CodeGen/AArch64/stack-probing-dynamic-no-frame-setup.ll | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/test/CodeGen/AArch64/stack-probing-dynamic-no-frame-setup.ll b/llvm/test/CodeGen/AArch64/stack-probing-dynamic-no-frame-setup.ll
index 96f2f63d703c7d..e1303285ee6b6a 100644
--- a/llvm/test/CodeGen/AArch64/stack-probing-dynamic-no-frame-setup.ll
+++ b/llvm/test/CodeGen/AArch64/stack-probing-dynamic-no-frame-setup.ll
@@ -1,4 +1,4 @@
-; RUN: llc --stop-after=finalize-isel -o - | FileCheck %s
+; RUN: llc < %s --stop-after=finalize-isel -o - | FileCheck %s
target triple = "aarch64-linux"
; Check dynamic stack allocation and probing instructions do not have
More information about the llvm-commits
mailing list