[cfe-commits] r83328 - /cfe/trunk/lib/CodeGen/CodeGenModule.cpp

Eric Christopher echristo at apple.com
Mon Oct 5 15:17:18 PDT 2009


>
>   if (D->hasAttr<NoInlineAttr>())
>     F->addFnAttr(llvm::Attribute::NoInline);
> +
> +  if (const AlignedAttr *AA = D->getAttr<AlignedAttr>())
> +    F->setAlignment(AA->getAlignment()/8);

8 is a bit opaque, perhaps a BITS_PER_UNIT or some such?

-eric



More information about the cfe-commits mailing list