Skip to content

Commit

Permalink
fixes embedded
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout authored Jan 27, 2024
1 parent 741982f commit ec96a3a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/system/embedded.nim
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ proc nimFrame(s: PFrame) {.compilerRtl, inl, exportc: "nimFrame".} = discard
proc popFrame {.compilerRtl, inl.} = discard

proc setFrame(s: PFrame) {.compilerRtl, inl.} = discard
proc pushSafePoint(s: PSafePoint) {.compilerRtl, inl.} = discard
proc popSafePoint {.compilerRtl, inl.} = discard
when not gotoBasedExceptions:
proc pushSafePoint(s: PSafePoint) {.compilerRtl, inl.} = discard
proc popSafePoint {.compilerRtl, inl.} = discard
proc pushCurrentException(e: ref Exception) {.compilerRtl, inl.} = discard
proc popCurrentException {.compilerRtl, inl.} = discard

Expand Down

0 comments on commit ec96a3a

Please sign in to comment.