We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e577c8c commit ee6eb98Copy full SHA for ee6eb98
src/hotspot/cpu/x86/macroAssembler_x86.cpp
@@ -4084,6 +4084,9 @@ class ControlWord {
4084
case 1: rc = "round down"; break;
4085
case 2: rc = "round up "; break;
4086
case 3: rc = "chop "; break;
4087
+ default:
4088
+ rc = NULL; // silence compiler warnings
4089
+ fatal("Unknown rounding control: %d", rounding_control());
4090
};
4091
// precision control
4092
const char* pc;
@@ -4092,6 +4095,9 @@ class ControlWord {
4095
case 1: pc = "reserved"; break;
4093
4096
case 2: pc = "53 bits "; break;
4094
4097
case 3: pc = "64 bits "; break;
4098
4099
+ pc = NULL; // silence compiler warnings
4100
+ fatal("Unknown precision control: %d", precision_control());
4101
4102
// flags
4103
char f[9];
0 commit comments