Skip to content

Commit

Permalink
Fix ARM build breakage from 96a1f3b
Browse files Browse the repository at this point in the history
Fixes ARM assembly errors from 96a1f3b due to incorrect comment syntax.

Review-URL: https://codereview.appspot.com/311900043
  • Loading branch information
derekbruening committed Oct 7, 2016
1 parent 72f8d40 commit 135a086
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions suite/tests/linux/infinite.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* **********************************************************
* Copyright (c) 2014 Google, Inc. All rights reserved.
* Copyright (c) 2014-2016 Google, Inc. All rights reserved.
* Copyright (c) 2003 VMware, Inc. All rights reserved.
* **********************************************************/

Expand Down Expand Up @@ -52,9 +52,9 @@ int main()
#elif defined (__arm__)
__asm__("b aroundexit");
__asm__("doexit: ");
__asm__(" mov r7, #248 // exit_group");
__asm__(" mov r0, #0 // exit code");
__asm__(" svc 0 // kernel");
__asm__(" mov r7, #248 @ exit_group");
__asm__(" mov r0, #0 @ exit code");
__asm__(" svc 0 @ kernel");
__asm__("aroundexit: bl doexit");
#else
# error NYI
Expand Down

0 comments on commit 135a086

Please sign in to comment.