comparison dmd/dump.c @ 305:2b72433d5c8c trunk

[svn r326] Fixed a bunch of issues with printf's that MinGW32 did not support. Fixed problems with label collisions when using labels inside inline asm. LabelStatement is now easily reached given its Identifier, which should be useful elsewhere too. Enabled inline asm for building the lib/compiler/llvmdc runtime code, fixing branches out of asm makes this possible.
author lindquist
date Fri, 27 Jun 2008 22:04:35 +0200
parents c53b6e3fe49a
children 661384d6a936
comparison
equal deleted inserted replaced
304:3ebc136702dd 305:2b72433d5c8c
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 %jd type=%s\n", this, (intmax_t)value, type_print(type)); 55 printf("%p %lld 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);