Skip to content

Commit c6a9b21

Browse files
committed
Fix Linux build
1 parent 23b762f commit c6a9b21

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

llvm/lib/Support/Unix/Signals.inc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,9 @@ static void InfoSignalHandler(int Sig) {
425425
CurrentInfoFunction();
426426
}
427427

428-
void llvm::sys::RunInterruptHandlers() { RemoveFilesToRemove(); }
428+
void llvm::sys::RunInterruptHandlers(bool /*ExecuteSignalHandlers*/) {
429+
RemoveFilesToRemove();
430+
}
429431

430432
void llvm::sys::SetInterruptFunction(void (*IF)()) {
431433
InterruptFunction.exchange(IF);

0 commit comments

Comments
 (0)