From 3b89fba65143cf12e2fc3bf78602e17b2a71802f Mon Sep 17 00:00:00 2001 From: legendecas Date: Tue, 28 Nov 2023 23:46:05 +0800 Subject: [PATCH] fixup! src: fix backtrace with [[noreturn]] abort --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index cf73081f7e0fb6..08b9151f1cfabf 100644 --- a/src/util.h +++ b/src/util.h @@ -130,7 +130,7 @@ void DumpJavaScriptBacktrace(FILE* fp); // backtraces may not work correctly in [[noreturn]] functions because // when generating code for them the compiler can choose not to // maintain the frame pointers or link registers that are necessary for -// correct backtracing. +// correct backtracing. // `ABORT` must be a macro and not a [[noreturn]] function to make sure the // backtrace is correct. #define ABORT() \