summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2014-04-12 18:39:57 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2014-04-12 18:39:57 +0000
commit30120c0626698e98f4f98b32b4e1de169f35c342 (patch)
tree8bcbc313511290dddbad864c910506c481e15e8a /llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
parent8cdb9df6a577ec34a85980e6cc18c2423dd3a37c (diff)
downloadbcm5719-llvm-30120c0626698e98f4f98b32b4e1de169f35c342.tar.gz
bcm5719-llvm-30120c0626698e98f4f98b32b4e1de169f35c342.zip
Make helper static and place random global into the llvm namespace.
llvm-svn: 206116
Diffstat (limited to 'llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp b/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
index 47f5bf929c7..f67d578d104 100644
--- a/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
+++ b/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
@@ -535,7 +535,7 @@ bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
return true;
}
-template<> bool IsCPSRDead<MachineInstr>(MachineInstr* MI) {
+template <> bool llvm::IsCPSRDead<MachineInstr>(MachineInstr *MI) {
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
const MachineOperand &MO = MI->getOperand(i);
if (!MO.isReg() || MO.isUndef() || MO.isUse())
OpenPOWER on IntegriCloud