forked from OSchip/llvm-project
[ARC] Add missing return statement
This commit is contained in:
parent
736b0d0cf0
commit
597a9070b5
|
@ -66,7 +66,7 @@ void ARCAsmPrinter::emitInstruction(const MachineInstr *MI) {
|
|||
bool ARCAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
||||
// Functions are 4-byte aligned.
|
||||
MF.ensureAlignment(Align(4));
|
||||
AsmPrinter::runOnMachineFunction(MF);
|
||||
return AsmPrinter::runOnMachineFunction(MF);
|
||||
}
|
||||
|
||||
// Force static initialization.
|
||||
|
|
Loading…
Reference in New Issue