[compiler-rt] r276379 - [asan] revert to using -std=c++11 on test/asan/TestCases/use-after-scope-capture.cc to fix Linux failures after r276332. This probably breaks the windows build, sorry, but returns to the earlier status quo.

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 21 18:34:32 PDT 2016


Author: kcc
Date: Thu Jul 21 20:34:32 2016
New Revision: 276379

URL: http://llvm.org/viewvc/llvm-project?rev=276379&view=rev
Log:
[asan] revert to using -std=c++11 on  test/asan/TestCases/use-after-scope-capture.cc to fix Linux failures after r276332. This probably breaks the windows build, sorry, but returns to the earlier status quo. 

Modified:
    compiler-rt/trunk/test/asan/TestCases/use-after-scope-capture.cc

Modified: compiler-rt/trunk/test/asan/TestCases/use-after-scope-capture.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/use-after-scope-capture.cc?rev=276379&r1=276378&r2=276379&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/use-after-scope-capture.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/use-after-scope-capture.cc Thu Jul 21 20:34:32 2016
@@ -1,4 +1,4 @@
-// RUN: %clangxx_asan -std=c++14 -O1 -fsanitize-address-use-after-scope %s -o %t && \
+// RUN: %clangxx_asan -std=c++11 -O1 -fsanitize-address-use-after-scope %s -o %t && \
 // RUN:     not %run %t 2>&1 | FileCheck %s
 
 #include <functional>




More information about the llvm-commits mailing list