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

Side by Side Diff: test/rules/src/subdir4/asm-function.assem

Issue 11363143: ninja windows: Support x64 configuration platform (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: allow rule override of asm on windows + test Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « test/rules/src/subdir4/asm-function.asm ('k') | test/rules/src/subdir4/build-asm.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #if PLATFORM_WINDOWS || PLATFORM_MAC 1 #if PLATFORM_WINDOWS || PLATFORM_MAC
2 # define IDENTIFIER(n) _##n 2 # define IDENTIFIER(n) _##n
3 #else /* Linux */ 3 #else /* Linux */
4 # define IDENTIFIER(n) n 4 # define IDENTIFIER(n) n
5 #endif 5 #endif
6 6
7 .globl IDENTIFIER(asm_function) 7 .globl IDENTIFIER(asm_function)
8 IDENTIFIER(asm_function): 8 IDENTIFIER(asm_function):
9 movl $41, %eax 9 movl $41, %eax
10 ret 10 ret
OLDNEW
« no previous file with comments | « test/rules/src/subdir4/asm-function.asm ('k') | test/rules/src/subdir4/build-asm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698