[cfe-commits] r83942 - /cfe/trunk/test/Sema/unused-expr.c
Chris Lattner
sabre at nondot.org
Mon Oct 12 21:57:27 PDT 2009
Author: lattner
Date: Mon Oct 12 23:57:27 2009
New Revision: 83942
URL: http://llvm.org/viewvc/llvm-project?rev=83942&view=rev
Log:
add rdar # I accidentally lost.
Modified:
cfe/trunk/test/Sema/unused-expr.c
Modified: cfe/trunk/test/Sema/unused-expr.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/unused-expr.c?rev=83942&r1=83941&r2=83942&view=diff
==============================================================================
--- cfe/trunk/test/Sema/unused-expr.c (original)
+++ cfe/trunk/test/Sema/unused-expr.c Mon Oct 12 23:57:27 2009
@@ -83,7 +83,7 @@
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;
More information about the cfe-commits
mailing list