Fix type bug that breaks 64-bit OSX build.

This commit is contained in:
Jack Palevich 2009-10-29 17:56:56 -07:00
parent c951c59232
commit 46f2bd2080

View file

@ -5003,7 +5003,7 @@ class Compiler : public ErrorSink {
return pGen->gtst(0, 0);
}
void block(int* breakLabel, int continueAddress, bool outermostFunctionBlock) {
void block(intptr_t* breakLabel, intptr_t continueAddress, bool outermostFunctionBlock) {
intptr_t a, n, t;
Type* pBaseType;