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:
parent
e6a9345187
commit
8a07776d39
@ -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"; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user