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 d9067dc commit e958379Copy full SHA for e958379
llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
@@ -182,9 +182,8 @@ namespace {
182
"indirect-tls-seg-refs");
183
184
// OptFor[Min]Size are used in pattern predicates that isel is matching.
185
- bool OptForSize = MF.getFunction().hasOptSize();
186
OptForMinSize = MF.getFunction().hasMinSize();
187
- assert((!OptForMinSize || OptForSize) &&
+ assert((!OptForMinSize || MF.getFunction().hasOptSize()) &&
188
"OptForMinSize implies OptForSize");
189
190
SelectionDAGISel::runOnMachineFunction(MF);
0 commit comments