summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema/offsetof.c
diff options
context:
space:
mode:
authorRichard Trieu <rtrieu@google.com>2013-05-15 00:44:06 +0000
committerRichard Trieu <rtrieu@google.com>2013-05-15 00:44:06 +0000
commit1c6f15d755178e0eccd3a9959565606c3f8045d2 (patch)
treedef1e79d984fe719d3a579b97bcb5acf97ae8c97 /clang/test/Sema/offsetof.c
parente475dcddc9fd73eda9115150bedec851c6af985e (diff)
downloadbcm5719-llvm-1c6f15d755178e0eccd3a9959565606c3f8045d2.tar.gz
bcm5719-llvm-1c6f15d755178e0eccd3a9959565606c3f8045d2.zip
Move a test that requires 64-bit mode to a separate test with a triple in
the run line. llvm-svn: 181854
Diffstat (limited to 'clang/test/Sema/offsetof.c')
-rw-r--r--clang/test/Sema/offsetof.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/clang/test/Sema/offsetof.c b/clang/test/Sema/offsetof.c
index 4e7fd7f29e9..9e876ad5898 100644
--- a/clang/test/Sema/offsetof.c
+++ b/clang/test/Sema/offsetof.c
@@ -70,14 +70,3 @@ int test5() {
return __builtin_offsetof(Array, array[*(int*)0]); // expected-warning{{indirection of non-volatile null pointer}} expected-note{{__builtin_trap}}
}
-// PR15216
-// Don't crash when taking computing the offset of structs with large arrays.
-const unsigned long Size = (1l << 62);
-
-struct Chunk {
- char padding[Size];
- char more_padding[1][Size];
- char data;
-};
-
-int test6 = __builtin_offsetof(struct Chunk, data);
OpenPOWER on IntegriCloud