From b15b5bb22143eb37a9c922c17fcf8deca4c2b9c6 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357380 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/win64-nosse-error.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/X86/win64-nosse-error.ll b/test/CodeGen/X86/win64-nosse-error.ll index 0d22adf0a79..8cc55202442 100644 --- a/test/CodeGen/X86/win64-nosse-error.ll +++ b/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.50.1