use 64-bit typedefs for portability

This commit is contained in:
Karl Schultz
2005-12-08 04:34:17 +00:00
parent 0694adaf71
commit 59af97420e
2 changed files with 2 additions and 2 deletions

View File

@@ -955,7 +955,7 @@ static void cvp_emit_inst( struct compilation *cp,
struct reg reg[3]; struct reg reg[3];
GLuint result, nr_args, i; GLuint result, nr_args, i;
assert(sizeof(*op) == sizeof(long long)); assert(sizeof(*op) == sizeof(MESA_LONGLONG));
/* Need to handle SWZ, ARL specially. /* Need to handle SWZ, ARL specially.
*/ */

View File

@@ -111,7 +111,7 @@ union instruction {
GLuint pad2; GLuint pad2;
} msk; } msk;
long long dword; MESA_LONGLONG dword;
}; };