ARM: Put isV8EligibleForIT into the llvm namespace. While there make it inline.

llvm-svn: 192350
This commit is contained in:
Benjamin Kramer 2013-10-10 14:35:45 +00:00
parent 11421cc493
commit 4cb23ab23b

View File

@ -16,10 +16,10 @@
#include "ARM.h"
using namespace llvm;
namespace llvm {
template<typename InstrType> // could be MachineInstr or MCInst
bool isV8EligibleForIT(InstrType *Instr, int BLXOperandIndex=0) {
inline bool isV8EligibleForIT(InstrType *Instr, int BLXOperandIndex = 0) {
switch (Instr->getOpcode()) {
default:
return false;
@ -88,4 +88,6 @@ bool isV8EligibleForIT(InstrType *Instr, int BLXOperandIndex=0) {
}
}
}
#endif