s/PrintMethodPass/PrintFunctionPass

llvm-svn: 2182
This commit is contained in:
Chris Lattner
2002-04-08 22:05:01 +00:00
parent 1e759cb144
commit 6e39131e01
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ enum Opts {
};
static Pass *createPrintMethodPass() {
return new PrintMethodPass("Current Method: \n", &cerr);
return new PrintFunctionPass("Current Method: \n", &cerr);
}
// OptTable - Correlate enum Opts to Pass constructors...