From 7af32444b9b17719ebabb6bee6eb52465acc8507 Mon Sep 17 00:00:00 2001 From: Krasimir Georgiev Date: Mon, 1 Apr 2019 11:42:54 +0000 Subject: [PATCH] [X86] Fix a test from r357317 Summary: The missing `<` causes the lld command to override the test file, which fails in environments marking the test files as readonly. Reviewers: bkramer Reviewed By: bkramer Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D60060 llvm-svn: 357380 --- llvm/test/CodeGen/X86/win64-nosse-error.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/X86/win64-nosse-error.ll b/llvm/test/CodeGen/X86/win64-nosse-error.ll index 0d22adf..8cc5520 100644 --- a/llvm/test/CodeGen/X86/win64-nosse-error.ll +++ b/llvm/test/CodeGen/X86/win64-nosse-error.ll @@ -1,4 +1,4 @@ -; RUN: not --crash llc %s -mattr="-sse" 2>&1 | FileCheck %s +; RUN: not --crash llc < %s -mattr="-sse" 2>&1 | FileCheck %s target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-windows-macho" -- 2.7.4