From d6b305dcba95fc4928a2baa6bbeb15d22db9d061 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 28 May 2010 20:08:00 +0000 Subject: [PATCH] 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 --- lib/Sema/SemaAttr.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/Sema/SemaAttr.cpp b/lib/Sema/SemaAttr.cpp index df68f53da6..69f27b0ada 100644 --- a/lib/Sema/SemaAttr.cpp +++ b/lib/Sema/SemaAttr.cpp @@ -140,13 +140,8 @@ void Sema::ActOnPragmaOptionsAlign(PragmaOptionsAlignKind Kind, // // 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; -- 2.49.0