From 188ee05832ab2e9ec52e80628305ebd1d2fc34ae Mon Sep 17 00:00:00 2001 From: Jasper Woudenberg Date: Sat, 18 May 2024 13:42:50 +0200 Subject: [PATCH] 'Fix' llvm test gen Not sure why, but if I don't choose 108 as the ident id I get an error that structureCompare is missing an implementation. --- crates/compiler/module/src/symbol.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/compiler/module/src/symbol.rs b/crates/compiler/module/src/symbol.rs index f73633a8dae..5761608bf37 100644 --- a/crates/compiler/module/src/symbol.rs +++ b/crates/compiler/module/src/symbol.rs @@ -1534,7 +1534,7 @@ define_builtins! { 88 LIST_LEN_USIZE: "lenUsize" 89 LIST_SORT: "Sort" exposed_type=true 90 LIST_COMPARE: "compare" - unexposed 91 LIST_STRUCTURAL_COMPARE: "structuralCompare" + unexposed 108 LIST_STRUCTURAL_COMPARE: "structuralCompare" } 7 RESULT: "Result" => { 0 RESULT_RESULT: "Result" exposed_type=true // the Result.Result type alias