mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Issue #260 - Fix C compiler issue with line label
This commit is contained in:
parent
49e06dce07
commit
b8e9d39b28
1 changed files with 2 additions and 1 deletions
|
@ -1326,11 +1326,12 @@
|
|||
(string-append
|
||||
(st:->code trace)
|
||||
;; TODO: probably needs brackets afterwards...
|
||||
(if has-loop? "\nloop:\n" "")
|
||||
(if has-loop? "\nloop: {\n" "")
|
||||
))))
|
||||
body)
|
||||
" ")
|
||||
"; \n"
|
||||
(if has-loop? "}\n" "")
|
||||
"}\n"))
|
||||
formals*))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue