Sema: Fix comment, apparently #pragma options align=power is just the same as
align=native, at least for the platforms we support.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105000 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/SemaAttr.cpp b/lib/Sema/SemaAttr.cpp
index df68f53..69f27b0 100644
--- a/lib/Sema/SemaAttr.cpp
+++ b/lib/Sema/SemaAttr.cpp
@@ -140,13 +140,8 @@
//
// FIXME: This is not true on Darwin/PPC.
case POAK_Native:
- case POAK_Natural:
- Context->push(0);
- Context->setAlignment(0);
- break;
-
- // FIXME: We just ignore #pragma options align=power for now.
case POAK_Power:
+ case POAK_Natural:
Context->push(0);
Context->setAlignment(0);
break;