summaryrefslogtreecommitdiffhomepage
path: root/include/CompilerKit/Utilities
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-21 22:14:31 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-21 22:14:31 +0100
commit6c2b1b2f83c492db1e38879719502668276442f6 (patch)
treea3b057c2eef7759010beca6b859eb0e0854026fa /include/CompilerKit/Utilities
parent470f065bc61bc3dbebe342d426e49a4f70ff335b (diff)
feat: CompilerKit: Assembler and Linker improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/Utilities')
-rw-r--r--include/CompilerKit/Utilities/Compiler.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/CompilerKit/Utilities/Compiler.h b/include/CompilerKit/Utilities/Compiler.h
index 97d1e9c..621f229 100644
--- a/include/CompilerKit/Utilities/Compiler.h
+++ b/include/CompilerKit/Utilities/Compiler.h
@@ -91,15 +91,7 @@ inline void drvi_crash_handler(std::int32_t id) {
switch (id) {
default: {
- kStdOut << "SIGNAL: Unknown Signal (" << id << ")." << kBlank << std::endl;
- break;
- }
- case SIGSEGV: {
- kStdOut << "SIGNAL: Segmentation Fault." << kBlank << std::endl;
- break;
- }
- case SIGABRT: {
- kStdOut << "SIGNAL: Aborted." << kBlank << std::endl;
+ kStdOut << "SIGNAL: Signal (" << id << ")." << kBlank << std::endl;
break;
}
}