From 8c08a692ee138d9eb5582d8e50fa5afe4c992621 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 21 Jul 2008 19:48:15 +0000 Subject: Fix uses of underscore-capital names. llvm-svn: 53870 --- llvm/lib/CodeGen/MachineFunction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib') 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"; } -- cgit v1.2.3