1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

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 e6a9345187
commit 8a07776d39

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"; }