From 2b3b32361f460bf1d8e75ef0febda5c798980a81 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 26 Jun 2010 22:06:50 +0000 Subject: [PATCH] Fix test weirdness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106959 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/PartialSpecialize/two-specializations.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Transforms/PartialSpecialize/two-specializations.ll b/test/Transforms/PartialSpecialize/two-specializations.ll index 5f499a9b808..e94e8907554 100644 --- a/test/Transforms/PartialSpecialize/two-specializations.ll +++ b/test/Transforms/PartialSpecialize/two-specializations.ll @@ -1,7 +1,7 @@ ; If there are two specializations of a function, make sure each callsite ; calls the right one. ; -; RUN: opt -S -partialspecialization %s | opt -S -inline %s | FileCheck %s +; RUN: opt -S -partialspecialization -inline %s | FileCheck %s declare void @callback1() declare void @callback2()