Merge pull request #280 from joshuawarner32/master

Fix arm compiler abort
This commit is contained in:
Joel Dice 2014-06-19 08:16:14 -06:00
commit dbfd65a44d
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ if test $# -eq 0; then
exit 1
fi
while test $# > 1 ; do
while test $# -gt 1 ; do
key="$1"
case $key in
-c|--container)

View File

@ -322,11 +322,11 @@ class CallEvent: public Event {
unsigned argumentIndex = 0;
while (true) {
Value* v = static_cast<Value*>(arguments[index]);
Value* v = static_cast<Value*>(arguments[argumentIndex]);
unsigned footprint
= (argumentIndex + 1 < arguments.count and v->nextWord
== arguments[index + 1])
== arguments[argumentIndex + 1])
? 2
: 1;