summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/lib/CodeGen/MachineFunction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp
index 410819ab69c..2cac96a4a8a 100644
--- a/llvm/lib/CodeGen/MachineFunction.cpp
+++ b/llvm/lib/CodeGen/MachineFunction.cpp
@@ -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"; }
OpenPOWER on IntegriCloud