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 | 8c08a692ee138d9eb5582d8e50fa5afe4c992621 (patch) | |
| tree | dd99c8f74e561c28a37cafc4e7829ebdfce017d3 | |
| parent | e5d1fcfe4e75e3716636f450b6cf50e5f10bc0b9 (diff) | |
| download | bcm5719-llvm-8c08a692ee138d9eb5582d8e50fa5afe4c992621.tar.gz bcm5719-llvm-8c08a692ee138d9eb5582d8e50fa5afe4c992621.zip  | |
Fix uses of underscore-capital names.
llvm-svn: 53870
| -rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 4 | 
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"; }  | 

