diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-10-15 08:44:44 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-10-15 08:44:44 +0000 |
commit | 1f4295b966870fff784faa5a5eba3fe9e27a6406 (patch) | |
tree | 068d785f0014ecfab7a36eefd1dd522d72fe31db | |
parent | c5127edaec77915a173708c2460fda030c67edc6 (diff) |
testcase for http://llvm.org/PR8371 of my last commit, r116570
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116571 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Sema/unused-expr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Sema/unused-expr.c b/test/Sema/unused-expr.c index 15608ec8a4..760e3cf8d3 100644 --- a/test/Sema/unused-expr.c +++ b/test/Sema/unused-expr.c @@ -118,3 +118,6 @@ void f(int i, ...) { __builtin_va_arg(ap, int); __builtin_va_end(ap); } + +// PR8371 +int fn5() __attribute__ ((__const)); |