mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-19 04:25:03 +00:00

Makes sure that we turn on `debug-symbols` in mono tests, and that this feature is fully respected in symbol generation, so that output in release + debug builds are the same. Closes #4435
18 lines
590 B
Text
18 lines
590 B
Text
procedure Num.19 (#Attr.2, #Attr.3):
|
|
let Num.256 : I64 = lowlevel NumAdd #Attr.2 #Attr.3;
|
|
ret Num.256;
|
|
|
|
procedure Test.0 ():
|
|
let Test.10 : I64 = 41i64;
|
|
let Test.1 : [C I64, C ] = TagId(0) Test.10;
|
|
let Test.7 : U8 = 0i64;
|
|
let Test.8 : U8 = GetTagId Test.1;
|
|
let Test.9 : Int1 = lowlevel Eq Test.7 Test.8;
|
|
if Test.9 then
|
|
let Test.3 : I64 = UnionAtIndex (Id 0) (Index 0) Test.1;
|
|
let Test.5 : I64 = 1i64;
|
|
let Test.4 : I64 = CallByName Num.19 Test.3 Test.5;
|
|
ret Test.4;
|
|
else
|
|
let Test.6 : I64 = 1i64;
|
|
ret Test.6;
|