rip out old dbg and setup reasonable base debug location info

This commit is contained in:
Brendan Hansknecht 2023-11-29 15:25:30 -08:00
parent 3d6c140a30
commit e6cc43492a
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
5 changed files with 13 additions and 116 deletions

View file

@ -22,7 +22,7 @@ extern fn roc_dealloc(c_ptr: *anyopaque, alignment: u32) callconv(.C) void;
extern fn roc_dbg(file_path: *anyopaque, message: *anyopaque) callconv(.C) void;
// Since roc_dbg is never used by the builtins, we need at export a function that uses it to stop DCE.
// Sincet roc_dbg is never used by the builtins, we need at export a function that uses it to stop DCE.
pub fn test_dbg(file_path: *anyopaque, message: *anyopaque) callconv(.C) void {
roc_dbg(file_path, message);
}