aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/decl.c
diff options
context:
space:
mode:
authorMehdi Amini <joker.eph@gmail.com>2023-07-17 12:47:39 -0700
committerMehdi Amini <joker.eph@gmail.com>2023-07-17 18:08:04 -0700
commite0ac46e69d7adbe327148550ffafe746cbc0ec78 (patch)
tree54e195e4f0e0d82498dcc8e37da95ca9954ede08 /clang/test/CodeGen/decl.c
parenta5cee3e386bde28ce21ff2ead3fc420f018604ca (diff)
downloadllvm-e0ac46e69d7adbe327148550ffafe746cbc0ec78.zip
llvm-e0ac46e69d7adbe327148550ffafe746cbc0ec78.tar.gz
llvm-e0ac46e69d7adbe327148550ffafe746cbc0ec78.tar.bz2
Revert "Remove rdar links; NFC"
This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
Diffstat (limited to 'clang/test/CodeGen/decl.c')
-rw-r--r--clang/test/CodeGen/decl.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/test/CodeGen/decl.c b/clang/test/CodeGen/decl.c
index a63846b..0b7317c 100644
--- a/clang/test/CodeGen/decl.c
+++ b/clang/test/CodeGen/decl.c
@@ -19,6 +19,7 @@ void test1(void) {
}
+// rdar://7346691
void test2(void) {
// This should codegen as a "@test2.x" global + memcpy.
int x[] = { 1, 2, 3, 4, 6, 8, 9, 10, 123, 231, 123,23, 24 };
@@ -77,11 +78,13 @@ void test6(void) {
test6f(&x);
}
+// rdar://7657600
struct test7s { int a; int b; } test7[] = {
{1, 2},
{4},
};
+// rdar://7872531
#pragma pack(push, 2)
struct test8s { int f0; char f1; } test8g = {};
@@ -101,7 +104,7 @@ void init_error(void) {
-// ABI crash in recursive struct-through-function-pointer.
+// rdar://8147692 - ABI crash in recursive struct-through-function-pointer.
typedef struct {
int x5a;
} x5;