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 54aa0fd commit 2ef30f7Copy full SHA for 2ef30f7
llvm/tools/llvm-mc/llvm-mc.cpp
@@ -472,11 +472,8 @@ int main(int argc, char **argv) {
472
}
473
474
// Handle features passed to target/subtarget.
475
- if (MAttrs.size()) {
476
- for (unsigned i = 0; i != MAttrs.size(); ++i)
477
- Features.AddFeature(MAttrs[i]);
478
- }
479
-
+ for (unsigned i = 0; i != MAttrs.size(); ++i)
+ Features.AddFeature(MAttrs[i]);
480
FeaturesStr = Features.getString();
481
482
std::unique_ptr<MCSubtargetInfo> STI(
0 commit comments