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

Unified Diff: test/win/linker-flags/safeseh_zero.asm

Issue 217813007: Pass the /safeseh option to ml.exe. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Rename the assmebly code test file. Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: test/win/linker-flags/safeseh_zero.asm
diff --git a/test/win/linker-flags/safeseh_zero.asm b/test/win/linker-flags/safeseh_zero.asm
new file mode 100644
index 0000000000000000000000000000000000000000..141e4ed07389fd5f3b486c58cb3d0aa8f5d19f50
--- /dev/null
+++ b/test/win/linker-flags/safeseh_zero.asm
@@ -0,0 +1,10 @@
+.MODEL FLAT, C
+.CODE
+
+PUBLIC zero
+zero PROC
+ xor eax, eax
+ ret 0
+zero ENDP
+
+END

Powered by Google App Engine
This is Rietveld 408576698