diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-15 17:08:50 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-15 17:08:50 +0000 |
commit | b29cda9b3c39fbbd53db44dbc5075d5445a98200 (patch) | |
tree | b858a95e9c0cad74c71661ecada32e5fdbd6041a /llvm/lib/CodeGen/MachineVerifier.cpp | |
parent | 345356ee9a30b0d7653219e1d97e60c5cd116241 (diff) | |
download | bcm5719-llvm-b29cda9b3c39fbbd53db44dbc5075d5445a98200.tar.gz bcm5719-llvm-b29cda9b3c39fbbd53db44dbc5075d5445a98200.zip |
Fix a bunch of namespace polution.
llvm-svn: 101376
Diffstat (limited to 'llvm/lib/CodeGen/MachineVerifier.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineVerifier.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index 19fb52c05d9..0b75c559827 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -351,8 +351,8 @@ void MachineVerifier::visitMachineFunctionBefore() { } // Does iterator point to a and b as the first two elements? -bool matchPair(MachineBasicBlock::const_succ_iterator i, - const MachineBasicBlock *a, const MachineBasicBlock *b) { +static bool matchPair(MachineBasicBlock::const_succ_iterator i, + const MachineBasicBlock *a, const MachineBasicBlock *b) { if (*i == a) return *++i == b; if (*i == b) |