[PATCH] D107506: [PowerPC][AIX] Warn when using pragma align(packed) on AIX.
Sean Fertile via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 5 12:10:58 PDT 2021
sfertile updated this revision to Diff 364570.
sfertile added a comment.
Only emit diagnostic on bitfield members, which is the only difference in align(packed) behaviour XL and clang/xlclang.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107506/new/
https://reviews.llvm.org/D107506
Files:
clang/include/clang/Basic/DiagnosticSemaKinds.td
clang/lib/Sema/SemaDecl.cpp
clang/test/Sema/aix-pragma-align-packed-warn.c
Index: clang/test/Sema/aix-pragma-align-packed-warn.c
===================================================================
--- /dev/null
+++ clang/test/Sema/aix-pragma-align-packed-warn.c
@@ -0,0 +1,16 @@
+// RUN: %clang_cc1 -triple powerpc64-ibm-aix-xcoff -fxl-pragma-pack -verify -fsyntax-only %s
+// RUN: %clang_cc1 -triple powerpc-ibm-aix-xcoff -fxl-pragma-pack -verify -fsyntax-only %s
+
+#pragma align(packed)
+struct A {
+ short s1;
+ int : 0; // expected-warning {{#pragma align(packed) may not be compatible with objects generated with AIX XL C/C++}}
+ short s2;
+};
+
+struct B {
+ short a : 8; // expected-warning {{#pragma align(packed) may not be compatible with objects generated with AIX XL C/C++}}
+ short b : 8; // expected-warning {{#pragma align(packed) may not be compatible with objects generated with AIX XL C/C++}}
+ int c;
+};
+#pragma align(reset)
Index: clang/lib/Sema/SemaDecl.cpp
===================================================================
--- clang/lib/Sema/SemaDecl.cpp
+++ clang/lib/Sema/SemaDecl.cpp
@@ -16701,6 +16701,13 @@
}
}
+ if (Context.getTargetInfo().getTriple().isOSAIX() &&
+ AlignPackStack.hasValue()) {
+ AlignPackInfo APInfo = AlignPackStack.CurrentValue;
+ if (APInfo.IsAlignAttr() && APInfo.getAlignMode() == AlignPackInfo::Packed)
+ Diag(FieldLoc, diag::warn_pragma_align_not_xl_compatible);
+ }
+
return BitWidth;
}
Index: clang/include/clang/Basic/DiagnosticSemaKinds.td
===================================================================
--- clang/include/clang/Basic/DiagnosticSemaKinds.td
+++ clang/include/clang/Basic/DiagnosticSemaKinds.td
@@ -913,6 +913,9 @@
InGroup<IgnoredPragmas>;
def err_pragma_options_align_mac68k_target_unsupported : Error<
"mac68k alignment pragma is not supported on this target">;
+def warn_pragma_align_not_xl_compatible : Warning<
+ "#pragma align(packed) may not be compatible with objects generated with AIX XL C/C++">,
+ InGroup<AIXCompat>;
def warn_pragma_pack_invalid_alignment : Warning<
"expected #pragma pack parameter to be '1', '2', '4', '8', or '16'">,
InGroup<IgnoredPragmas>;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107506.364570.patch
Type: text/x-patch
Size: 2144 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210805/c8756abf/attachment.bin>
More information about the cfe-commits
mailing list