Skip to content

Commit e8dbed0

Browse files
[RISCV][GISEL] Fix RUN lines in vararg.ll
The `< %s` needed to be removed. This change fixes the test introduced in 02379d1
1 parent 3d3e46c commit e8dbed0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

llvm/test/CodeGen/RISCV/GlobalISel/vararg.ll

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 4
2-
; RUN: sed 's/iXLen/i32/g' %s | llc -mtriple=riscv32 -global-isel -verify-machineinstrs < %s \
2+
; RUN: sed 's/iXLen/i32/g' %s | llc -mtriple=riscv32 -global-isel -verify-machineinstrs \
33
; RUN: | FileCheck -check-prefixes=RV32,ILP32 %s
4-
; RUN: sed 's/iXLen/i32/g' %s | llc -mtriple=riscv32 -global-isel -mattr=+d -verify-machineinstrs < %s \
4+
; RUN: sed 's/iXLen/i32/g' %s | llc -mtriple=riscv32 -global-isel -mattr=+d -verify-machineinstrs \
55
; RUN: | FileCheck -check-prefixes=RV32,RV32D-ILP32 %s
66
; RUN: sed 's/iXLen/i32/g' %s | llc -mtriple=riscv32 -global-isel -mattr=+d -target-abi ilp32f \
7-
; RUN: -verify-machineinstrs < %s \
7+
; RUN: -verify-machineinstrs \
88
; RUN: | FileCheck -check-prefixes=RV32,RV32D-ILP32F %s
99
; RUN: sed 's/iXLen/i32/g' %s | llc -mtriple=riscv32 -global-isel -mattr=+d -target-abi ilp32d \
10-
; RUN: -verify-machineinstrs < %s \
10+
; RUN: -verify-machineinstrs \
1111
; RUN: | FileCheck -check-prefixes=RV32,RV32D-ILP32D %s
12-
; RUN: sed 's/iXLen/i64/g' %s | llc -mtriple=riscv64 -global-isel -verify-machineinstrs < %s \
12+
; RUN: sed 's/iXLen/i64/g' %s | llc -mtriple=riscv64 -global-isel -verify-machineinstrs \
1313
; RUN: | FileCheck -check-prefixes=RV64,LP64 %s
1414
; RUN: sed 's/iXLen/i64/g' %s | llc -mtriple=riscv64 -global-isel -mattr=+d -target-abi lp64f \
15-
; RUN: -verify-machineinstrs < %s \
15+
; RUN: -verify-machineinstrs \
1616
; RUN: | FileCheck -check-prefixes=RV64,LP64F %s
1717
; RUN: sed 's/iXLen/i64/g' %s | llc -mtriple=riscv64 -global-isel -mattr=+d -target-abi lp64d \
18-
; RUN: -verify-machineinstrs < %s \
18+
; RUN: -verify-machineinstrs \
1919
; RUN: | FileCheck -check-prefixes=RV64,LP64D %s
2020

2121
; The same vararg calling convention is used for ilp32/ilp32f/ilp32d and for

0 commit comments

Comments
 (0)