[llvm] r318153 - Use input redirection in WebAssembly/comdat.ll test.

Ilya Biryukov via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 14 06:26:42 PST 2017


Author: ibiryukov
Date: Tue Nov 14 06:26:42 2017
New Revision: 318153

URL: http://llvm.org/viewvc/llvm-project?rev=318153&view=rev
Log:
Use input redirection in WebAssembly/comdat.ll test.

To match how the other tests do it.

Modified:
    llvm/trunk/test/CodeGen/WebAssembly/comdat.ll

Modified: llvm/trunk/test/CodeGen/WebAssembly/comdat.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/WebAssembly/comdat.ll?rev=318153&r1=318152&r2=318153&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/WebAssembly/comdat.ll (original)
+++ llvm/trunk/test/CodeGen/WebAssembly/comdat.ll Tue Nov 14 06:26:42 2017
@@ -1,4 +1,4 @@
-; RUN: not llc -mtriple wasm32-unknown-unknown-wasm %s 2>&1 | FileCheck %s
+; RUN: not llc < %s -mtriple wasm32-unknown-unknown-wasm 2>&1 | FileCheck %s
 
 $f = comdat any
 @f = global i32 0, comdat




More information about the llvm-commits mailing list