Fix example code in comment.

llvm-svn: 132844
This commit is contained in:
Richard Osborne 2011-06-10 12:28:24 +00:00
parent b1b368f36d
commit 54ce7a5671
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ namespace llvm {
/// sequence for languages like C and C++, allowing some APIs to customize the
/// pass sequence in various ways. A simple example of using it would be:
///
/// OptimizerBuilder Builder;
/// Builder.setOptimizationLevel(2);
/// PassManagerBuilder Builder;
/// Builder.OptLevel = 2;
/// Builder.populateFunctionPassManager(FPM);
/// Builder.populateModulePassManager(MPM);
///