We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abbe36a commit 7aef2b5Copy full SHA for 7aef2b5
lib/IRGen/LoadableByAddress.cpp
@@ -3422,8 +3422,8 @@ struct Properties {
3422
uint16_t numRegisters = 0;
3423
3424
public:
3425
- static uint16_t MaxNumUses = 65535;
3426
- static uint16_t MaxNumRegisters = 65535;
+ static uint16_t MaxNumUses;
+ static uint16_t MaxNumRegisters;
3427
3428
void addConstructor() {
3429
sawConstructor = true;
@@ -3484,6 +3484,9 @@ struct Properties {
3484
};
3485
}
3486
3487
+uint16_t Properties::MaxNumUses = 65535;
3488
+uint16_t Properties::MaxNumRegisters = 65535;
3489
+
3490
namespace {
3491
class LargeLoadableHeuristic {
3492
GenericEnvironment *genEnv;
0 commit comments