From 035f40e8d5056fb94f2a7500a8e07b80b2b936e6 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Wed, 20 Aug 2025 09:57:45 +0100 Subject: [PATCH] [RISCV] incorrect-extract-subvector-combine.ll - remove quotes around -mattr argument. NFC. The unnecessary quotes prevents DOS scripts from executing the RUN line. --- .../CodeGen/RISCV/rvv/incorrect-extract-subvector-combine.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/RISCV/rvv/incorrect-extract-subvector-combine.ll b/llvm/test/CodeGen/RISCV/rvv/incorrect-extract-subvector-combine.ll index 3b0d14a5591f..68d327d20c66 100644 --- a/llvm/test/CodeGen/RISCV/rvv/incorrect-extract-subvector-combine.ll +++ b/llvm/test/CodeGen/RISCV/rvv/incorrect-extract-subvector-combine.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5 -; RUN: llc -mtriple=riscv64 -mattr='+zve64f,+zvl512b' < %s | FileCheck %s +; RUN: llc -mtriple=riscv64 -mattr=+zve64f,+zvl512b < %s | FileCheck %s ; Previously, an incorrect (extract_subvector (extract_subvector X, C), 0) DAG combine crashed ; this snippet.