[llvm] [CodeGen][NFC] Use llc instead of opt (PR #204964)
Bill Wendling via llvm-commits
llvm-commits at lists.llvm.org
Sun Jun 21 01:13:26 PDT 2026
https://github.com/isanbard created https://github.com/llvm/llvm-project/pull/204964
The use of `-O0` is there because `llc` defaults to `-O2`.
>From 7b85647ad1217f99822c5793bfe0b5ee7d5bc832 Mon Sep 17 00:00:00 2001
From: Bill Wendling <isanbard at gmail.com>
Date: Sun, 21 Jun 2026 00:54:27 -0700
Subject: [PATCH] [CodeGen][NFC] Use llc instead of opt
---
llvm/test/CodeGen/AArch64/inline-asm-prepare.ll | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/llvm/test/CodeGen/AArch64/inline-asm-prepare.ll b/llvm/test/CodeGen/AArch64/inline-asm-prepare.ll
index 13ed24692b35e..bb3d21e56ff17 100644
--- a/llvm/test/CodeGen/AArch64/inline-asm-prepare.ll
+++ b/llvm/test/CodeGen/AArch64/inline-asm-prepare.ll
@@ -1,6 +1,4 @@
-; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
-; RUN: opt %s -inline-asm-prepare -S -o - | FileCheck %s
-; RUN: opt %s -passes=inline-asm-prepare -S -o - | FileCheck %s
+; RUN: llc -mtriple=aarch64-unknown-unknown -O0 -stop-after=inline-asm-prepare < %s 2>&1 | FileCheck %s
define i32 @test0() {
; CHECK-LABEL: @test0(
More information about the llvm-commits
mailing list