diff options
Diffstat (limited to 'clang/lib/Sema/SemaAttr.cpp')
| -rw-r--r-- | clang/lib/Sema/SemaAttr.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/clang/lib/Sema/SemaAttr.cpp b/clang/lib/Sema/SemaAttr.cpp index 82978c95605..c540af2498d 100644 --- a/clang/lib/Sema/SemaAttr.cpp +++ b/clang/lib/Sema/SemaAttr.cpp @@ -137,6 +137,10 @@ void Sema::ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind,    // We don't support #pragma options align=power.    switch (Kind) { +    // For all targets we support native and natural are the same. +    // +    // FIXME: This is not true on Darwin/PPC. +  case POAK_Native:    case POAK_Natural:      Context->push(0);      Context->setAlignment(0); | 

