aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/LICM
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-09 16:49:12 +0000
committerChris Lattner <sabre@nondot.org>2003-12-09 16:49:12 +0000
commit612ac2dfaa8132b80af395fbd3292afa42bd2150 (patch)
treefc187a3b8e634bec20af4aa124ba85e53c8aa0b3 /test/Transforms/LICM
parent16442cba7c4152a086a46cdd2172318e8c445a4d (diff)
downloadexternal_llvm-612ac2dfaa8132b80af395fbd3292afa42bd2150.zip
external_llvm-612ac2dfaa8132b80af395fbd3292afa42bd2150.tar.gz
external_llvm-612ac2dfaa8132b80af395fbd3292afa42bd2150.tar.bz2
Improve portability with Mac OS/X
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10338 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/LICM')
-rw-r--r--test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll2
-rw-r--r--test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll b/test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll
index 952078c..e757ba2 100644
--- a/test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll
+++ b/test/Transforms/LICM/2003-08-04-TrappingInstHoist.ll
@@ -1,7 +1,7 @@
; This testcase tests for a problem where LICM hoists
; potentially trapping instructions when they are not guaranteed to execute.
;
-; RUN: llvm-as < %s | opt -licm | llvm-dis | grep -C 2 "IfUnEqual" | grep div
+; RUN: llvm-as < %s | opt -licm | llvm-dis | grep -C2 "IfUnEqual" | grep div
%X = global int 0
declare void %foo()
diff --git a/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll b/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
index 65d1808..3dbd4e7 100644
--- a/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
+++ b/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
@@ -1,7 +1,7 @@
; This testcase tests to make sure a trapping instruction is hoisted when
; it is guaranteed to execute.
;
-; RUN: llvm-as < %s | opt -licm | llvm-dis | grep -C 2 "test" | grep div
+; RUN: llvm-as < %s | opt -licm | llvm-dis | grep -C2 "test" | grep div
%X = global int 0
declare void %foo()