aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2025-05-13 08:58:02 +0100
committergingerBill <bill@gingerbill.org>2025-05-13 08:58:02 +0100
commit0a12c464abcc8e5bf2cc47204bd2fe74e461d443 (patch)
treef63e1d693c09f112a45e72821ade75eeaeaebc68
parent7cd00483fe928ff326693276b43681e99200509d (diff)
Change Odin's RTTI section name to `.odinti`
-rw-r--r--src/llvm_backend_type.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_backend_type.cpp b/src/llvm_backend_type.cpp
index 2aed4cbf7..4e514c3d1 100644
--- a/src/llvm_backend_type.cpp
+++ b/src/llvm_backend_type.cpp
@@ -1,7 +1,7 @@
gb_internal void lb_set_odin_rtti_section(LLVMValueRef value) {
if (build_context.metrics.os != TargetOs_darwin) {
- LLVMSetSection(value, ".odin-rtti");
+ LLVMSetSection(value, ".odinti");
}
}