aboutsummaryrefslogtreecommitdiffstats
path: root/libacc/acc.cpp
diff options
context:
space:
mode:
authorJack Palevich <jackpal@google.com>2009-10-29 17:56:56 -0700
committerJack Palevich <jackpal@google.com>2009-10-29 17:56:56 -0700
commit46f2bd2080115122f1ba5f3e12f6ce6a81a82fae (patch)
treeb5a7e0e4ac889f244626efdc733c4398d1caeeeb /libacc/acc.cpp
parentc951c59232f59f1e0235725103f8636fe2f580f7 (diff)
downloadsystem_core-46f2bd2080115122f1ba5f3e12f6ce6a81a82fae.tar.gz
system_core-46f2bd2080115122f1ba5f3e12f6ce6a81a82fae.tar.bz2
system_core-46f2bd2080115122f1ba5f3e12f6ce6a81a82fae.zip
Fix type bug that breaks 64-bit OSX build.
Diffstat (limited to 'libacc/acc.cpp')
-rw-r--r--libacc/acc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libacc/acc.cpp b/libacc/acc.cpp
index 98401977..0c32f256 100644
--- a/libacc/acc.cpp
+++ b/libacc/acc.cpp
@@ -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;