@@ -404,8 +404,8 @@ class VM_Version_StubGenerator: public StubCodeGenerator {
404
404
// Generate SEGV here (reference through NULL)
405
405
// and check upper YMM/ZMM bits after it.
406
406
//
407
- intx saved_useavx = UseAVX;
408
- intx saved_usesse = UseSSE;
407
+ int saved_useavx = UseAVX;
408
+ int saved_usesse = UseSSE;
409
409
410
410
// If UseAVX is uninitialized or is set by the user to include EVEX
411
411
if (use_evex) {
@@ -900,7 +900,7 @@ void VM_Version::get_processor_features() {
900
900
if (FLAG_IS_DEFAULT (UseSSE)) {
901
901
FLAG_SET_DEFAULT (UseSSE, use_sse_limit);
902
902
} else if (UseSSE > use_sse_limit) {
903
- warning (" UseSSE=%d is not supported on this CPU, setting it to UseSSE=%d" , ( int ) UseSSE, use_sse_limit);
903
+ warning (" UseSSE=%d is not supported on this CPU, setting it to UseSSE=%d" , UseSSE, use_sse_limit);
904
904
FLAG_SET_DEFAULT (UseSSE, use_sse_limit);
905
905
}
906
906
@@ -930,9 +930,9 @@ void VM_Version::get_processor_features() {
930
930
}
931
931
if (UseAVX > use_avx_limit) {
932
932
if (UseSSE < 4 ) {
933
- warning (" UseAVX=%d requires UseSSE=4, setting it to UseAVX=0" , ( int ) UseAVX);
933
+ warning (" UseAVX=%d requires UseSSE=4, setting it to UseAVX=0" , UseAVX);
934
934
} else {
935
- warning (" UseAVX=%d is not supported on this CPU, setting it to UseAVX=%d" , ( int ) UseAVX, use_avx_limit);
935
+ warning (" UseAVX=%d is not supported on this CPU, setting it to UseAVX=%d" , UseAVX, use_avx_limit);
936
936
}
937
937
FLAG_SET_DEFAULT (UseAVX, use_avx_limit);
938
938
}
@@ -1860,9 +1860,9 @@ void VM_Version::get_processor_features() {
1860
1860
log ->print_cr (" Logical CPUs per core: %u" ,
1861
1861
logical_processors_per_package ());
1862
1862
log ->print_cr (" L1 data cache line size: %u" , L1_data_cache_line_size ());
1863
- log ->print (" UseSSE=%d" , ( int ) UseSSE);
1863
+ log ->print (" UseSSE=%d" , UseSSE);
1864
1864
if (UseAVX > 0 ) {
1865
- log ->print (" UseAVX=%d" , ( int ) UseAVX);
1865
+ log ->print (" UseAVX=%d" , UseAVX);
1866
1866
}
1867
1867
if (UseAES) {
1868
1868
log ->print (" UseAES=1" );
0 commit comments