forked from OSchip/llvm-project
[Hexagon] Make helper function static. NFC.
llvm-svn: 257476
This commit is contained in:
parent
b3a41d8bdf
commit
ab8cc02ba5
|
@ -190,9 +190,9 @@ bool HexagonAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
|
|||
return false;
|
||||
}
|
||||
|
||||
MCSymbol *smallData(AsmPrinter &AP, const MachineInstr &MI,
|
||||
MCStreamer &OutStreamer,
|
||||
const MCOperand &Imm, int AlignSize) {
|
||||
static MCSymbol *smallData(AsmPrinter &AP, const MachineInstr &MI,
|
||||
MCStreamer &OutStreamer, const MCOperand &Imm,
|
||||
int AlignSize) {
|
||||
MCSymbol *Sym;
|
||||
int64_t Value;
|
||||
if (Imm.getExpr()->evaluateAsAbsolute(Value)) {
|
||||
|
|
Loading…
Reference in New Issue