diff dmd/parse.c @ 737:041c1596d217

Removed warnings on ignored aligns. Only do aligment on packed structs, align(1) struct Packed { ... } Changed the way struct/class fields are added, first small part of cleaning up these... Make struct/class/union fields aware of any anonymous struct/union they might be part of, not yet really useful, but part of getting better union support.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 28 Oct 2008 15:41:09 +0100
parents 51797efb6975
children bc982f1ad106
line wrap: on
line diff
--- a/dmd/parse.c	Mon Oct 27 17:42:38 2008 +0100
+++ b/dmd/parse.c	Tue Oct 28 15:41:09 2008 +0100
@@ -349,6 +349,9 @@
 	    case TOKalign:
 	    {	unsigned n;
 
+        // LDC better align code locations
+        Loc alignloc = loc;
+
 		s = NULL;
 		nextToken();
 		if (token.value == TOKlparen)
@@ -367,7 +370,7 @@
 		    n = global.structalign;		// default
 
 		a = parseBlock();
-		s = new AlignDeclaration(loc, n, a);
+		s = new AlignDeclaration(alignloc, n, a);
 		break;
 	    }