[llvm-commits] [llvm] r102197 - in /llvm/trunk/test: Analysis/CallGraph/2008-09-09-DirectCall.ll Analysis/CallGraph/2008-09-09-UsedByGlobal.ll Transforms/PruneEH/2008-09-05-CGUpdate.ll

Chris Lattner sabre at nondot.org
Fri Apr 23 11:38:40 PDT 2010


Author: lattner
Date: Fri Apr 23 13:38:40 2010
New Revision: 102197

URL: http://llvm.org/viewvc/llvm-project?rev=102197&view=rev
Log:
fix some failures my callgraph dump format change broke.

Modified:
    llvm/trunk/test/Analysis/CallGraph/2008-09-09-DirectCall.ll
    llvm/trunk/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll
    llvm/trunk/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll

Modified: llvm/trunk/test/Analysis/CallGraph/2008-09-09-DirectCall.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/CallGraph/2008-09-09-DirectCall.ll?rev=102197&r1=102196&r2=102197&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/CallGraph/2008-09-09-DirectCall.ll (original)
+++ llvm/trunk/test/Analysis/CallGraph/2008-09-09-DirectCall.ll Fri Apr 23 13:38:40 2010
@@ -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:

Modified: llvm/trunk/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll?rev=102197&r1=102196&r2=102197&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll (original)
+++ llvm/trunk/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll Fri Apr 23 13:38:40 2010
@@ -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]
 

Modified: llvm/trunk/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll?rev=102197&r1=102196&r2=102197&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll (original)
+++ llvm/trunk/test/Transforms/PruneEH/2008-09-05-CGUpdate.ll Fri Apr 23 13:38:40 2010
@@ -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 }





More information about the llvm-commits mailing list