aboutsummaryrefslogtreecommitdiff
path: root/unittests/VMCore/PassManagerTest.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-31 00:28:46 +0000
committerChris Lattner <sabre@nondot.org>2009-08-31 00:28:46 +0000
commit5e794d40b8fc112ca55dfb66fc2249c6bfaa75a9 (patch)
tree61c6eeb8cbfd477a202841aef65cee4a685884e5 /unittests/VMCore/PassManagerTest.cpp
parent5095e3d1d1caef8d573534d369e37277c623064c (diff)
update unit test for previous change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/VMCore/PassManagerTest.cpp')
-rw-r--r--unittests/VMCore/PassManagerTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/VMCore/PassManagerTest.cpp b/unittests/VMCore/PassManagerTest.cpp
index 5c3f04ef82..cb8f9ebb93 100644
--- a/unittests/VMCore/PassManagerTest.cpp
+++ b/unittests/VMCore/PassManagerTest.cpp
@@ -154,7 +154,7 @@ namespace llvm {
struct CGPass : public PassTest<CallGraph, CallGraphSCCPass> {
public:
- virtual bool runOnSCC(const std::vector<CallGraphNode*> &SCMM) {
+ virtual bool runOnSCC(std::vector<CallGraphNode*> &SCMM) {
EXPECT_TRUE(getAnalysisIfAvailable<TargetData>());
run();
return false;