]> granicus.if.org Git - clang/commitdiff
First part of PR9968: the __range variable in a dependent C++11 for-range statement...
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 21 Jun 2011 23:07:19 +0000 (23:07 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 21 Jun 2011 23:07:19 +0000 (23:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133572 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaStmt.cpp
test/SemaCXX/for-range-unused.cpp [new file with mode: 0644]

index 9af9c8de1bd095b0a1af4cc812da9412672155c8..0ba4f99abce565de7a49114e7d549b439002358b 100644 (file)
@@ -1406,6 +1406,9 @@ Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation ColonLoc,
       if (LoopVar->isInvalidDecl())
         NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
     }
+  } else {
+    // The range is implicitly used as a placeholder when it is dependent.
+    RangeVar->setUsed();
   }
 
   return Owned(new (Context) CXXForRangeStmt(RangeDS,
diff --git a/test/SemaCXX/for-range-unused.cpp b/test/SemaCXX/for-range-unused.cpp
new file mode 100644 (file)
index 0000000..7e26c78
--- /dev/null
@@ -0,0 +1,22 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x -Wunused
+
+// PR9968: We used to warn that __range is unused in a dependent for-range.
+
+template <typename T>
+  struct Vector {
+    void doIt() {
+      // FIXME: PR10168: Only warn once for this!
+      int a; // expected-warning 2{{unused variable 'a'}}
+
+      for (auto& e : elements)
+        ;
+    }
+
+    T elements[10];
+  };
+
+
+int main(int, char**) {
+  Vector<int>    vector;
+  vector.doIt(); // expected-note {{requested here}}
+}