mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-30 10:31:47 +00:00
fix nim js cmp fails at CT (#16473)
This commit is contained in:
@@ -340,7 +340,12 @@ proc cmpStrings(a, b: string): int {.asmNoStackFrame, compilerproc.} =
|
||||
"""
|
||||
|
||||
proc cmp(x, y: string): int =
|
||||
return cmpStrings(x, y)
|
||||
when nimvm:
|
||||
if x == y: result = 0
|
||||
elif x < y: result = -1
|
||||
else: result = 1
|
||||
else:
|
||||
result = cmpStrings(x, y)
|
||||
|
||||
proc eqStrings(a, b: string): bool {.asmNoStackFrame, compilerproc.} =
|
||||
asm """
|
||||
|
||||
Reference in New Issue
Block a user