Deleted Added
sdiff udiff text old ( 8085:d1eb504fd302 ) new ( 8644:acf68e5a8cd7 )
full compact
1#
2# Copyright (c) 2011 Mark D. Hill and David A. Wood
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 38 unchanged lines hidden (view full) ---

47 type = self.type_ast.type;
48 ident = "%s" % self.ident;
49
50 # Add to symbol table
51 v = Var(self.symtab, self.ident, self.location, type, ident,
52 self.pairs)
53 self.symtab.newSymbol(v)
54 if self.pointer or str(type) == "TBE" or (
55 "interface" in type and type["interface"] == "AbstractCacheEntry"):
56 code += "%s* %s" % (type.c_ident, ident)
57 else:
58 code += "%s %s" % (type.c_ident, ident)
59 return type