[compiler-rt] r271787 - It really helps to not randomly delete one of the closing brackets. =/
Chandler Carruth via llvm-commits
llvm-commits at lists.llvm.org
Sat Jun 4 02:07:00 PDT 2016
Author: chandlerc
Date: Sat Jun 4 04:06:59 2016
New Revision: 271787
URL: http://llvm.org/viewvc/llvm-project?rev=271787&view=rev
Log:
It really helps to not randomly delete one of the closing brackets. =/
Modified:
compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc?rev=271787&r1=271786&r2=271787&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/intercept_strdup.cc Sat Jun 4 04:06:59 2016
@@ -27,6 +27,6 @@ int main() {
//
// The local call to _strdup above may be the second or third frame depending
// on whether we're using the dynamic config.
-// CHECK: #{{[12]}} {{.*}} in main {{.*}}intercept_strdup.cc:[[@LINE-21]
+// CHECK: #{{[12]}} {{.*}} in main {{.*}}intercept_strdup.cc:[[@LINE-21]]
free(ptr);
}
More information about the llvm-commits
mailing list