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

Unified Diff: test/win/masm/hello.cc

Issue 11742015: Support MASM in MSBuild and Winja (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: With tests Created 7 years, 11 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
« no previous file with comments | « test/win/masm/dummyfunc-x86.asm ('k') | test/win/masm/masm.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/masm/hello.cc
diff --git a/test/win/compiler-flags/character-set-mbcs.cc b/test/win/masm/hello.cc
similarity index 52%
copy from test/win/compiler-flags/character-set-mbcs.cc
copy to test/win/masm/hello.cc
index 3286304730d394fcb5e02d2c0a8dc712523436f3..10b0bcf0d59512ff784d865019dd9534ab99d279 100644
--- a/test/win/compiler-flags/character-set-mbcs.cc
+++ b/test/win/masm/hello.cc
@@ -1,11 +1,9 @@
-// Copyright (c) 2012 Google Inc. All rights reserved.
+// Copyright (c) 2013 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef _MBCS
-#error
-#endif
+extern "C" int dummyfunc(void);
int main() {
- return 0;
+ return dummyfunc();
}
« no previous file with comments | « test/win/masm/dummyfunc-x86.asm ('k') | test/win/masm/masm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698