From: Devin Coughlin Date: Thu, 26 Nov 2015 00:11:23 +0000 (+0000) Subject: [analyzer] Add tests for generalized lambda capture (C++14). NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbd1f82d2775215c7a97ef4847aca75936ce9fd3;p=clang [analyzer] Add tests for generalized lambda capture (C++14). NFC. Add tests demonstrating that the analyzer supports generalized lambda capture. This support falls out naturally from the work Gábor Horváth did adding C++11 lambdas to the analyzer. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254114 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/lambdas-generalized-capture.cpp b/test/Analysis/lambdas-generalized-capture.cpp new file mode 100644 index 0000000000..790e15e8cc --- /dev/null +++ b/test/Analysis/lambdas-generalized-capture.cpp @@ -0,0 +1,50 @@ +// RUN: %clang_cc1 -std=c++14 -fsyntax-only -analyze -analyzer-checker=core,deadcode,debug.ExprInspection -verify %s + +int clang_analyzer_eval(int); + +void generalizedCapture() { + int v = 7; + auto lambda = [x=v]() { + return x; + }; + + int result = lambda(); + clang_analyzer_eval(result == 7); // expected-warning {{TRUE}} +} + +void sideEffectsInGeneralizedCapture() { + int v = 7; + auto lambda = [x=v++]() { + return x; + }; + clang_analyzer_eval(v == 8); // expected-warning {{TRUE}} + + int r1 = lambda(); + int r2 = lambda(); + clang_analyzer_eval(r1 == 7); // expected-warning {{TRUE}} + clang_analyzer_eval(r2 == 7); // expected-warning {{TRUE}} + clang_analyzer_eval(v == 8); // expected-warning {{TRUE}} +} + +int addOne(int p) { + return p + 1; +} + +void inliningInGeneralizedCapture() { + int v = 7; + auto lambda = [x=addOne(v)]() { + return x; + }; + + int result = lambda(); + clang_analyzer_eval(result == 8); // expected-warning {{TRUE}} +} + +void caseSplitInGeneralizedCapture(bool p) { + auto lambda = [x=(p ? 1 : 2)]() { + return x; + }; + + int result = lambda(); + clang_analyzer_eval(result == 1); // expected-warning {{FALSE}} expected-warning {{TRUE}} +}