summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-07-21 19:48:15 +0000
committerDan Gohman <gohman@apple.com>2008-07-21 19:48:15 +0000
commit8c08a692ee138d9eb5582d8e50fa5afe4c992621 (patch)
treedd99c8f74e561c28a37cafc4e7829ebdfce017d3 /llvm/lib/CodeGen/MachineFunction.cpp
parente5d1fcfe4e75e3716636f450b6cf50e5f10bc0b9 (diff)
downloadbcm5719-llvm-8c08a692ee138d9eb5582d8e50fa5afe4c992621.tar.gz
bcm5719-llvm-8c08a692ee138d9eb5582d8e50fa5afe4c992621.zip
Fix uses of underscore-capital names.
llvm-svn: 53870
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-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