mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +00:00
Always emit hti object types if needed (#8940)
The compiler is now smart enough to emit types only if needed without all the importc tricks. This also fixes a codegen bug where, if all the stars align correctly, typeinfo doesn't include any definition of `TNimType` but uses it. Found by @skilchen in #8938
This commit is contained in:
@@ -11,7 +11,7 @@ when declared(ThisIsSystem):
|
||||
# we are in system module:
|
||||
{.pragma: codegenType, compilerproc.}
|
||||
else:
|
||||
{.pragma: codegenType, importc.}
|
||||
{.pragma: codegenType.}
|
||||
|
||||
type
|
||||
# This should be the same as ast.TTypeKind
|
||||
|
||||
8
tests/ccgbugs/thtiobj.nim
Normal file
8
tests/ccgbugs/thtiobj.nim
Normal file
@@ -0,0 +1,8 @@
|
||||
discard """
|
||||
targets: "c cpp"
|
||||
"""
|
||||
|
||||
import typeinfo
|
||||
|
||||
var x = ""
|
||||
discard (getPointer(toAny(x)))
|
||||
Reference in New Issue
Block a user