comparison dmd/dump.c @ 1133:eeb8b95ea92e

Cleanup DMD 1.041 merge.
author Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
date Mon, 23 Mar 2009 20:26:33 +0100
parents 661384d6a936
children
comparison
equal deleted inserted replaced
1132:76e72fdef04d 1133:eeb8b95ea92e
50 } 50 }
51 51
52 void IntegerExp::dump(int i) 52 void IntegerExp::dump(int i)
53 { 53 {
54 indent(i); 54 indent(i);
55 printf("%p %lld type=%s\n", this, (long long)value, type_print(type)); 55 printf("%p %jd type=%s\n", this, (intmax_t)value, type_print(type));
56 } 56 }
57 57
58 void IdentifierExp::dump(int i) 58 void IdentifierExp::dump(int i)
59 { 59 {
60 indent(i); 60 indent(i);