aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CallGraphSCCPass.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-07-22 00:24:57 +0000
committerOwen Anderson <resistor@mac.com>2009-07-22 00:24:57 +0000
commite922c0201916e0b980ab3cfe91e1413e68d55647 (patch)
tree663be741b84470d97945f01da459a3627af683fd /include/llvm/CallGraphSCCPass.h
parent7cf12c7efd37dc12c3ed536a3f4c373dddac2b85 (diff)
downloadexternal_llvm-e922c0201916e0b980ab3cfe91e1413e68d55647.zip
external_llvm-e922c0201916e0b980ab3cfe91e1413e68d55647.tar.gz
external_llvm-e922c0201916e0b980ab3cfe91e1413e68d55647.tar.bz2
Get rid of the Pass+Context magic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76702 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CallGraphSCCPass.h')
-rw-r--r--include/llvm/CallGraphSCCPass.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/CallGraphSCCPass.h b/include/llvm/CallGraphSCCPass.h
index 8d5d7c3..85e83e5 100644
--- a/include/llvm/CallGraphSCCPass.h
+++ b/include/llvm/CallGraphSCCPass.h
@@ -38,7 +38,6 @@ struct CallGraphSCCPass : public Pass {
/// doInitialization - This method is called before the SCC's of the program
/// has been processed, allowing the pass to do initialization as necessary.
virtual bool doInitialization(CallGraph &CG) {
- Context = &CG.getModule().getContext();
return false;
}