diff src/os_cpu/windows_x86/vm/assembler_windows_x86.cpp @ 7430:d02120b7a34f

8004250: replace AbstractAssembler a_byte/a_long with emit_int8/emit_int32 Reviewed-by: jrose, kvn, twisti Contributed-by: Morris Meyer <morris.meyer@oracle.com>
author twisti
date Thu, 20 Dec 2012 18:53:44 -0800
parents cd3d6a6b95d9
children
line wrap: on
line diff
--- a/src/os_cpu/windows_x86/vm/assembler_windows_x86.cpp	Thu Dec 20 14:17:52 2012 -0800
+++ b/src/os_cpu/windows_x86/vm/assembler_windows_x86.cpp	Thu Dec 20 18:53:44 2012 -0800
@@ -30,7 +30,7 @@
 
 
 void MacroAssembler::int3() {
-  emit_byte(0xCC);
+  emit_int8((unsigned char)0xCC);
 }
 
 #ifndef _LP64