Fix uses of underscore-capital names.

llvm-svn: 53870
This commit is contained in:
Dan Gohman 2008-07-21 19:48:15 +00:00
parent e5d1fcfe4e
commit 8c08a692ee
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ namespace {
std::ostream *OS;
const std::string Banner;
Printer (std::ostream *_OS, const std::string &_Banner)
: MachineFunctionPass((intptr_t)&ID), OS (_OS), Banner (_Banner) { }
Printer (std::ostream *os, const std::string &banner)
: MachineFunctionPass((intptr_t)&ID), OS(os), Banner(banner) {}
const char *getPassName() const { return "MachineFunction Printer"; }