mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 11:46:06 +00:00

Reverts r362998, r362996, and r362994 because the tests do not pass on Windows due to CRLF changes. Adding back `-w` to diff is not enough, the new grep substitution doesn't work on Windows, and fixing it is non-trivial. llvm-svn: 363007
16 lines
855 B
C++
16 lines
855 B
C++
// RUN: %clang_analyze_cc1 -analyzer-checker=core,unix.MismatchedDeallocator -analyzer-output=text -verify %s
|
|
// RUN: %clang_analyze_cc1 -analyzer-checker=core,unix.MismatchedDeallocator -analyzer-output=plist %s -o %t.plist
|
|
// RUN: tail -n +11 %t.plist | %diff_plist %S/copypaste/Inputs/expected-plists/MismatchedDeallocator-path-notes.cpp.plist -
|
|
|
|
void changePointee(int *p);
|
|
int *allocIntArray(unsigned c) {
|
|
return new int[c]; // expected-note {{Memory is allocated}}
|
|
}
|
|
void test() {
|
|
int *p = allocIntArray(1); // expected-note {{Calling 'allocIntArray'}}
|
|
// expected-note@-1 {{Returned allocated memory}}
|
|
changePointee(p);
|
|
delete p; // expected-warning {{Memory allocated by 'new[]' should be deallocated by 'delete[]', not 'delete'}}
|
|
// expected-note@-1 {{Memory allocated by 'new[]' should be deallocated by 'delete[]', not 'delete'}}
|
|
}
|