@@ -91,35 +91,28 @@ CheckFiles("check",
91
91
cl::desc (" File containing RuntimeDyld verifier checks." ),
92
92
cl::ZeroOrMore);
93
93
94
- // Tracking BUG: 19665
95
- // http://llvm.org/bugs/show_bug.cgi?id=19665
96
- //
97
- // Do not change these options to cl::opt<uint64_t> since this silently breaks
98
- // argument parsing.
99
- static cl::opt<unsigned long long >
100
- PreallocMemory (" preallocate" ,
101
- cl::desc (" Allocate memory upfront rather than on-demand" ),
102
- cl::init(0 ));
103
-
104
- static cl::opt<unsigned long long >
105
- TargetAddrStart (" target-addr-start" ,
106
- cl::desc (" For -verify only: start of phony target address "
107
- " range." ),
108
- cl::init(4096 ), // Start at "page 1" - no allocating at "null".
109
- cl::Hidden);
110
-
111
- static cl::opt<unsigned long long >
112
- TargetAddrEnd (" target-addr-end" ,
113
- cl::desc (" For -verify only: end of phony target address range." ),
114
- cl::init(~0ULL ),
115
- cl::Hidden);
116
-
117
- static cl::opt<unsigned long long >
118
- TargetSectionSep (" target-section-sep" ,
119
- cl::desc (" For -verify only: Separation between sections in "
120
- " phony target address space." ),
121
- cl::init(0 ),
122
- cl::Hidden);
94
+ static cl::opt<uint64_t >
95
+ PreallocMemory (" preallocate" ,
96
+ cl::desc (" Allocate memory upfront rather than on-demand" ),
97
+ cl::init(0 ));
98
+
99
+ static cl::opt<uint64_t > TargetAddrStart (
100
+ " target-addr-start" ,
101
+ cl::desc (" For -verify only: start of phony target address "
102
+ " range." ),
103
+ cl::init(4096 ), // Start at "page 1" - no allocating at "null".
104
+ cl::Hidden);
105
+
106
+ static cl::opt<uint64_t > TargetAddrEnd (
107
+ " target-addr-end" ,
108
+ cl::desc (" For -verify only: end of phony target address range." ),
109
+ cl::init(~0ULL ), cl::Hidden);
110
+
111
+ static cl::opt<uint64_t > TargetSectionSep (
112
+ " target-section-sep" ,
113
+ cl::desc (" For -verify only: Separation between sections in "
114
+ " phony target address space." ),
115
+ cl::init(0 ), cl::Hidden);
123
116
124
117
static cl::list<std::string>
125
118
SpecificSectionMappings (" map-section" ,
0 commit comments