提交 4663c7a5 编写于 作者: K kvn

7081926: assert(VM_Version::supports_sse2()) failed: must support

Summary: fix assert, prefetchnta is supported since SSE not SSE2.
Reviewed-by: never
上级 3e87f306
......@@ -2307,7 +2307,7 @@ void Assembler::prefetch_prefix(Address src) {
}
void Assembler::prefetchnta(Address src) {
NOT_LP64(assert(VM_Version::supports_sse2(), "must support"));
NOT_LP64(assert(VM_Version::supports_sse(), "must support"));
InstructionMark im(this);
prefetch_prefix(src);
emit_byte(0x18);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册