roc/crates/compiler/test_mono/generated/ir_two_defs.txt
Ayaz Hafiz 204ac2f8b4
Consolidate mono test behavior in debug and release modes
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
2022-11-02 15:04:47 -05:00

9 lines
263 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.1 : I64 = 3i64;
let Test.2 : I64 = 4i64;
let Test.3 : I64 = CallByName Num.19 Test.1 Test.2;
ret Test.3;