commit | b23deda7333cfc2316c989d10745c145dfbea6d6 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Aug 28 16:40:32 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Aug 28 16:40:32 2007 +0000 |
tree | 5c104a95899196294584840c2f62ae69eff79dc3 | |
parent | 4e6526b2de501f2bbc261fd8017c92c75bd8d8f7 [diff] [blame] |
warn about long long when in c89 mode. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41543 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/c89.c b/test/Sema/c89.c index 57085db..a784722 100644 --- a/test/Sema/c89.c +++ b/test/Sema/c89.c
@@ -17,3 +17,6 @@ __extension__ int j; /* expected-warning {{mixing declarations and code}} */ } } + +long long x; /* expected-warning {{extension}} */ +