From 71477fcb8c1ed1efb32e21884763bd7bc8fff6c4 Mon Sep 17 00:00:00 2001 From: Kelly Wilson Date: Sat, 30 May 2009 14:35:03 -0600 Subject: [PATCH] Forgot one windows underscore for asm output --- gen/asm-x86-32.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gen/asm-x86-32.h b/gen/asm-x86-32.h index 75afc559..0b9ab5c2 100644 --- a/gen/asm-x86-32.h +++ b/gen/asm-x86-32.h @@ -1528,9 +1528,8 @@ namespace AsmParserx8632 } // osx needs an extra underscore - if ( global.params.os == OSMacOSX ) - insnTemplate << "_"; - + if ( global.params.os == OSMacOSX || global.params.os == OSWindows ) + insnTemplate << "_"; // print out the mangle insnTemplate << vd->mangle(); vd->nakedUse = true;