Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1052)

Side by Side Diff: fusl/arch/i386/crt_arch.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 __asm__( 1 __asm__(
2 ".text\n" 2 ".text\n"
3 ".weak _DYNAMIC \n" 3 ".weak _DYNAMIC \n"
4 ".hidden _DYNAMIC \n" 4 ".hidden _DYNAMIC \n"
5 ".global " START "\n" 5 ".global " START "\n" START
6 START ":\n" 6 ":\n"
7 "» xor %ebp,%ebp \n" 7 "» xor %ebp,%ebp \n"
8 "» mov %esp,%eax \n" 8 "» mov %esp,%eax \n"
9 "» and $-16,%esp \n" 9 "» and $-16,%esp \n"
10 "» push %eax \n" 10 "» push %eax \n"
11 "» push %eax \n" 11 "» push %eax \n"
12 "» call 1f \n" 12 "» call 1f \n"
13 "1:» addl $_DYNAMIC-1b,(%esp) \n" 13 "1:»addl $_DYNAMIC-1b,(%esp) \n"
14 "» push %eax \n" 14 "» push %eax \n"
15 "» call " START "_c \n" 15 "» call " START "_c \n");
16 );
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698