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 | 12104464f339b0915d0d1d7db35173cda8f59469 (patch) | |
tree | b719778239aa958b9fa46f8e88b3e2ae60d08afb /test/Analysis/CallGraph | |
parent | 076863225ce070345ff7048f48b3550e00598a10 (diff) | |
download | external_llvm-12104464f339b0915d0d1d7db35173cda8f59469.zip external_llvm-12104464f339b0915d0d1d7db35173cda8f59469.tar.gz external_llvm-12104464f339b0915d0d1d7db35173cda8f59469.tar.bz2 |
fix some failures my callgraph dump format change broke.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102197 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/CallGraph')
-rw-r--r-- | test/Analysis/CallGraph/2008-09-09-DirectCall.ll | 2 | ||||
-rw-r--r-- | test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/test/Analysis/CallGraph/2008-09-09-DirectCall.ll b/test/Analysis/CallGraph/2008-09-09-DirectCall.ll index 6e34209..784d6c7 100644 --- a/test/Analysis/CallGraph/2008-09-09-DirectCall.ll +++ b/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/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll b/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll index 12849b7..0c5ef92 100644 --- a/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll +++ b/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] |