summaryrefslogtreecommitdiff
path: root/test/Sema/PR2727.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2008-08-28 18:42:20 +0000
committerDaniel Dunbar <daniel@zuster.org>2008-08-28 18:42:20 +0000
commitaa1f9f1d50adf294674b74510b62e863b68572bc (patch)
treea3031a6c8d04c9b9705463eda91eb7fd95865970 /test/Sema/PR2727.c
parent45479c88c8a44c55d27c3bd855273bb318082f37 (diff)
downloadclang-aa1f9f1d50adf294674b74510b62e863b68572bc.tar.gz
Fix isIntegerConstantExpr eval of __builtin_offsetof to return result
with correct width. - PR2728. Also, fix PR2727 test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55493 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/PR2727.c')
-rw-r--r--test/Sema/PR2727.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Sema/PR2727.c b/test/Sema/PR2727.c
index faf934d947..1b3096f0b5 100644
--- a/test/Sema/PR2727.c
+++ b/test/Sema/PR2727.c
@@ -1,3 +1,6 @@
+// RUN: clang -verify -fsyntax-only -std=c90 %s &&
+// RUN: clang -verify -fsyntax-only -std=c99 %s
+
int f (int x)
{
// sizeof applied to a type should not delete the type.