diff options
author | Joe Abbey <jabbey@arxan.com> | 2011-11-21 04:42:21 +0000 |
---|---|---|
committer | Joe Abbey <jabbey@arxan.com> | 2011-11-21 04:42:21 +0000 |
commit | 62faf772781cf5c3bd6806a7887147e35713dd40 (patch) | |
tree | 4f1414a7dd82e3e8c0a9a752b655f98c5e81e797 | |
parent | a124f949527e36efc05d2dbc999ddce43791b4ec (diff) | |
download | external_llvm-62faf772781cf5c3bd6806a7887147e35713dd40.zip external_llvm-62faf772781cf5c3bd6806a7887147e35713dd40.tar.gz external_llvm-62faf772781cf5c3bd6806a7887147e35713dd40.tar.bz2 |
Fixing a comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145025 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index 9afc540..c90bfed 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -48,7 +48,7 @@ bool Pass::mustPreserveAnalysisID(char &AID) const { return Resolver->getAnalysisIfAvailable(&AID, true) != 0; } -// dumpPassStructure - Implement the -debug-passes=Structure option +// dumpPassStructure - Implement the -debug-pass=Structure option void Pass::dumpPassStructure(unsigned Offset) { dbgs().indent(Offset*2) << getPassName() << "\n"; } |