aboutsummaryrefslogtreecommitdiff
path: root/test/Sema
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-13 04:57:27 +0000
committerChris Lattner <sabre@nondot.org>2009-10-13 04:57:27 +0000
commit7909fee36cb2c4737e5c74bf683913bf5ab09815 (patch)
tree0ef81015e64ea01e853a304bc0131f3668d8d29d /test/Sema
parent9079cd31061b00f30c7ced7874c45e15f8dd044e (diff)
add rdar # I accidentally lost.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83942 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema')
-rw-r--r--test/Sema/unused-expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/unused-expr.c b/test/Sema/unused-expr.c
index 84fe8ba9d6..acf488706f 100644
--- a/test/Sema/unused-expr.c
+++ b/test/Sema/unused-expr.c
@@ -83,7 +83,7 @@ void t5() {
int fn1() __attribute__ ((warn_unused_result));
int fn2() __attribute__ ((pure));
int fn3() __attribute__ ((const));
-
+// rdar://6587766
int t6() {
if (fn1() < 0 || fn2(2,1) < 0 || fn3(2) < 0) // no warnings
return -1;