diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-21 19:48:15 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-21 19:48:15 +0000 |
commit | 4ae08288321dce3826a0da22b917e95bb7efd365 (patch) | |
tree | 72f8082b1883e82771d5413bf806829a7cd365af /lib/CodeGen | |
parent | 12355a8adb68bc01be38efd606ee08e18aff9f05 (diff) | |
download | external_llvm-4ae08288321dce3826a0da22b917e95bb7efd365.zip external_llvm-4ae08288321dce3826a0da22b917e95bb7efd365.tar.gz external_llvm-4ae08288321dce3826a0da22b917e95bb7efd365.tar.bz2 |
Fix uses of underscore-capital names.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53870 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/MachineFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 410819a..2cac96a 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/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"; } |