Skip to content

Commit

Permalink
Merge pull request #280 from joshuawarner32/master
Browse files Browse the repository at this point in the history
Fix arm compiler abort
  • Loading branch information
dicej committed Jun 19, 2014
2 parents 7ec273f + ada6ce4 commit dbfd65a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/build.sh
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/codegen/compiler/event.cpp
Expand Up @@ -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;

Expand Down

0 comments on commit dbfd65a

Please sign in to comment.