diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-23 18:38:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-23 18:38:40 +0000 |
commit | 126a58e08421432a138f283ba4d572b7fc05db88 (patch) | |
tree | 6a478c410bb44374036bed64a2aeb43db835cf0a | |
parent | c691de3b4eccafd555a0f9e5e05f16bfd8e1f61a (diff) | |
download | bcm5719-llvm-126a58e08421432a138f283ba4d572b7fc05db88.tar.gz bcm5719-llvm-126a58e08421432a138f283ba4d572b7fc05db88.zip |
fix some failures my callgraph dump format change broke.
llvm-svn: 102197
-rw-r--r-- | llvm/test/Analysis/CallGraph/2008-09-09-DirectCall.ll | 2 | ||||
-rw-r--r-- | llvm/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll | 3 | ||||
-rw-r--r-- | llvm/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/llvm/test/Analysis/CallGraph/2008-09-09-DirectCall.ll b/llvm/test/Analysis/CallGraph/2008-09-09-DirectCall.ll index 6e34209a0e3..784d6c7ba1b 100644 --- a/llvm/test/Analysis/CallGraph/2008-09-09-DirectCall.ll +++ b/llvm/test/Analysis/CallGraph/2008-09-09-DirectCall.ll @@ -1,5 +1,5 @@ ; RUN: opt < %s -print-callgraph -disable-output |& \ -; RUN: grep {Calls function 'callee'} | count 2 +; RUN: grep {calls function 'callee'} | count 2 define internal void @callee(...) { entry: diff --git a/llvm/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll b/llvm/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll index 12849b7aa96..0c5ef92ef71 100644 --- a/llvm/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll +++ b/llvm/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll @@ -1,5 +1,4 @@ -; RUN: opt < %s -print-callgraph -disable-output |& \ -; RUN: grep {Calls function} +; RUN: opt < %s -print-callgraph -disable-output |& grep {calls function} @a = global void ()* @f ; <void ()**> [#uses=0] diff --git a/llvm/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll b/llvm/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll index 347af8f8463..33e0cfa3ce5 100644 --- a/llvm/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll +++ b/llvm/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll @@ -1,6 +1,6 @@ ; RUN: opt < %s -prune-eh -inline -print-callgraph \ ; RUN: -disable-output |& \ -; RUN: grep {Calls.*ce3806g__fxio__put__put_int64__4.1339} | count 2 +; RUN: grep {calls.*ce3806g__fxio__put__put_int64__4.1339} | count 2 %struct.FRAME.ce3806g = type { %struct.string___XUB, %struct.string___XUB, %struct.string___XUB, %struct.string___XUB } %struct.FRAME.ce3806g__fxio__put__4 = type { i32, i32, i32, %struct.system__file_control_block__pstring*, i32, i32, i8 } %struct.RETURN = type { i8, i32 } |