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:
LemonBoy
2018-09-11 17:03:21 +02:00
committed by Andreas Rumpf
parent 9ba80d2044
commit e7d4043406
2 changed files with 9 additions and 1 deletions

View File

@@ -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

View File

@@ -0,0 +1,8 @@
discard """
targets: "c cpp"
"""
import typeinfo
var x = ""
discard (getPointer(toAny(x)))