[llvm] 7ad7db0 - [RISCV] Fix typo in ABI name in test. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 9 11:46:29 PST 2024


Author: Craig Topper
Date: 2024-02-09T11:46:23-08:00
New Revision: 7ad7db0d9960859de10d23fa84aa581c154d152c

URL: https://github.com/llvm/llvm-project/commit/7ad7db0d9960859de10d23fa84aa581c154d152c
DIFF: https://github.com/llvm/llvm-project/commit/7ad7db0d9960859de10d23fa84aa581c154d152c.diff

LOG: [RISCV] Fix typo in ABI name in test. NFC

ilp64->lp64.

Added: 
    

Modified: 
    llvm/test/CodeGen/RISCV/push-pop-opt-crash.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/RISCV/push-pop-opt-crash.ll b/llvm/test/CodeGen/RISCV/push-pop-opt-crash.ll
index ca6895dc51fa8c..5edf3cf49e25dd 100644
--- a/llvm/test/CodeGen/RISCV/push-pop-opt-crash.ll
+++ b/llvm/test/CodeGen/RISCV/push-pop-opt-crash.ll
@@ -1,8 +1,8 @@
 ; RUN: llc -mattr=+zcmp -verify-machineinstrs  \
-; RUN: -mtriple=riscv32 -target-abi ilp32 < %s \
+; RUN: -mtriple=riscv32 -target-abi=ilp32 < %s \
 ; RUN: | FileCheck %s -check-prefixes=RV32IZCMP
 ; RUN: llc -mattr=+zcmp -verify-machineinstrs  \
-; RUN: -mtriple=riscv64 -target-abi ilp64 < %s \
+; RUN: -mtriple=riscv64 -target-abi=lp64 < %s \
 ; RUN: | FileCheck %s -check-prefixes=RV64IZCMP
 
 ; This source code exposed a crash in the RISC-V Zcmp Push/Pop optimization


        


More information about the llvm-commits mailing list