Author: tkreuzer Date: Wed Mar 10 01:31:06 2010 New Revision: 46045
URL: http://svn.reactos.org/svn/reactos?rev=46045&view=rev Log: [ASM] Don't check for _MSC_VER to decide if the assembly source is going to be compiled with ML or AS, instead check for _USE_ML Fixes compiling .S files with AS, when using MSVC
Modified: branches/header-work/include/reactos/asm.h
Modified: branches/header-work/include/reactos/asm.h URL: http://svn.reactos.org/svn/reactos/branches/header-work/include/reactos/asm.... ============================================================================== --- branches/header-work/include/reactos/asm.h [iso-8859-1] (original) +++ branches/header-work/include/reactos/asm.h [iso-8859-1] Wed Mar 10 01:31:06 2010 @@ -6,7 +6,7 @@ * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org) */
-#ifdef _MSC_VER +#ifdef _USE_ML
/* Allow ".name" identifiers */ OPTION DOTNAME