You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently a writeln statement emits two IR write instructions, the second one with string literal "\n". The C backend converts this literal into a proper CO runtime string value before printing it which involves unnecessary operations including allocation. This needs to be optimized.
The text was updated successfully, but these errors were encountered:
Currently a
writeln
statement emits two IRwrite
instructions, the second one with string literal"\n"
. The C backend converts this literal into a proper CO runtime string value before printing it which involves unnecessary operations including allocation. This needs to be optimized.The text was updated successfully, but these errors were encountered: