projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91fd532
)
Fix uses of underscore-capital names.
author
Dan Gohman
<gohman@apple.com>
Mon, 21 Jul 2008 19:48:15 +0000
(19:48 +0000)
committer
Dan Gohman
<gohman@apple.com>
Mon, 21 Jul 2008 19:48:15 +0000
(19:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53870
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/MachineFunction.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/MachineFunction.cpp
b/lib/CodeGen/MachineFunction.cpp
index 410819ab69c1fc0188d42451121eda442becaf05..2cac96a4a8a9dcd5f2c0240e21ebe6d09961011d 100644
(file)
--- 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 &_B
anner)
- : MachineFunctionPass((intptr_t)&ID), OS
(_OS), Banner (_Banner) {
}
+ Printer (std::ostream *
os, const std::string &b
anner)
+ : MachineFunctionPass((intptr_t)&ID), OS
(os), Banner(banner) {
}
const char *getPassName() const { return "MachineFunction Printer"; }