[llvm] r357380 - [X86] Fix a test from r357317

Krasimir Georgiev via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 1 04:42:54 PDT 2019


Author: krasimir
Date: Mon Apr  1 04:42:54 2019
New Revision: 357380

URL: http://llvm.org/viewvc/llvm-project?rev=357380&view=rev
Log:
[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

Modified:
    llvm/trunk/test/CodeGen/X86/win64-nosse-error.ll

Modified: llvm/trunk/test/CodeGen/X86/win64-nosse-error.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/win64-nosse-error.ll?rev=357380&r1=357379&r2=357380&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/win64-nosse-error.ll (original)
+++ llvm/trunk/test/CodeGen/X86/win64-nosse-error.ll Mon Apr  1 04:42:54 2019
@@ -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"




More information about the llvm-commits mailing list