forked from OSchip/llvm-project
clean Lanai namespace
Summary: This patch cleans the namespace of the Lanai target. Reviewers: jpienaar Reviewed By: jpienaar Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D30955 llvm-svn: 298015
This commit is contained in:
parent
78d15af1fa
commit
da9352c173
|
@ -1096,7 +1096,7 @@ StringRef LanaiAsmParser::splitMnemonic(StringRef Name, SMLoc NameLoc,
|
|||
return Mnemonic;
|
||||
}
|
||||
|
||||
bool IsMemoryAssignmentError(const OperandVector &Operands) {
|
||||
static bool IsMemoryAssignmentError(const OperandVector &Operands) {
|
||||
// Detects if a memory operation has an erroneous base register modification.
|
||||
// Memory operations are detected by matching the types of operands.
|
||||
//
|
||||
|
|
|
@ -89,7 +89,7 @@ public:
|
|||
|
||||
} // end anonymous namespace
|
||||
|
||||
Lanai::Fixups FixupKind(const MCExpr *Expr) {
|
||||
static Lanai::Fixups FixupKind(const MCExpr *Expr) {
|
||||
if (isa<MCSymbolRefExpr>(Expr))
|
||||
return Lanai::FIXUP_LANAI_21;
|
||||
if (const LanaiMCExpr *McExpr = dyn_cast<LanaiMCExpr>(Expr)) {
|
||||
|
@ -134,8 +134,8 @@ unsigned LanaiMCCodeEmitter::getMachineOpValue(
|
|||
}
|
||||
|
||||
// Helper function to adjust P and Q bits on load and store instructions.
|
||||
unsigned adjustPqBits(const MCInst &Inst, unsigned Value, unsigned PBitShift,
|
||||
unsigned QBitShift) {
|
||||
static unsigned adjustPqBits(const MCInst &Inst, unsigned Value,
|
||||
unsigned PBitShift, unsigned QBitShift) {
|
||||
const MCOperand AluOp = Inst.getOperand(3);
|
||||
unsigned AluCode = AluOp.getImm();
|
||||
|
||||
|
|
Loading…
Reference in New Issue