From 91df03b8f29905c8293f61696ffb95398eafa663 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Tue, 22 Jan 2013 14:39:21 +0000 Subject: [PATCH] Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a ModuleID This is done to avoid odd test failures, like the one fixed in r171243. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173163 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../ObjCARC/ensure-that-exception-unwind-path-is-visited.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll b/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll index 0c306346ec2..1fd03e7d9c6 100644 --- a/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll +++ b/test/Transforms/ObjCARC/ensure-that-exception-unwind-path-is-visited.ll @@ -1,4 +1,4 @@ -; RUN: opt -objc-arc -S %s | FileCheck %s +; RUN: opt -objc-arc -S < %s | FileCheck %s ; rdar://11744105 ; bugzilla://14584