Create enums for the different attributes.

We use the enums to query whether an Attributes object has that attribute. The
opaque layer is responsible for knowing where that specific attribute is stored.

llvm-svn: 165488
This commit is contained in:
Bill Wendling
2012-10-09 07:45:08 +00:00
parent 3b95e4da76
commit c9b22d735a
48 changed files with 319 additions and 306 deletions

View File

@@ -1013,7 +1013,8 @@ void MachineBlockPlacement::buildCFGChains(MachineFunction &F) {
// exclusively on the loop info here so that we can align backedges in
// unnatural CFGs and backedges that were introduced purely because of the
// loop rotations done during this layout pass.
if (F.getFunction()->getFnAttributes().hasOptimizeForSizeAttr())
if (F.getFunction()->getFnAttributes().
hasAttribute(Attributes::OptimizeForSize))
return;
unsigned Align = TLI->getPrefLoopAlignment();
if (!Align)