--- old/src/cpu/x86/vm/assembler_x86.cpp Tue Aug 16 10:00:29 2011 +++ new/src/cpu/x86/vm/assembler_x86.cpp Tue Aug 16 10:00:29 2011 @@ -2315,7 +2315,7 @@ } void Assembler::prefetchr(Address src) { - NOT_LP64(assert(VM_Version::supports_3dnow_prefetch(), "must support")); + assert(VM_Version::supports_3dnow_prefetch(), "must support"); InstructionMark im(this); prefetch_prefix(src); emit_byte(0x0D); @@ -2347,7 +2347,7 @@ } void Assembler::prefetchw(Address src) { - NOT_LP64(assert(VM_Version::supports_3dnow_prefetch(), "must support")); + assert(VM_Version::supports_3dnow_prefetch(), "must support"); InstructionMark im(this); prefetch_prefix(src); emit_byte(0x0D);