diff options
author | Anton Yartsev <anton.yartsev@gmail.com> | 2014-10-21 12:41:36 +0000 |
---|---|---|
committer | Anton Yartsev <anton.yartsev@gmail.com> | 2014-10-21 12:41:36 +0000 |
commit | 6ca45c92a93feaa4c5e7bba34317b7c8b5af3125 (patch) | |
tree | e7b9eb8d70cb5b1f0ab9ca366351a844dd200009 /clang/test/Analysis/Malloc+NewDelete_intersections.cpp | |
parent | cdb8db8d3cd35111e149231cc6fb2bb7bae46cc8 (diff) | |
download | bcm5719-llvm-6ca45c92a93feaa4c5e7bba34317b7c8b5af3125.tar.gz bcm5719-llvm-6ca45c92a93feaa4c5e7bba34317b7c8b5af3125.zip |
[analyzer] Move the NewDeleteLeaks checker from CplusplusAlpha to Cplusplus package.
llvm-svn: 220289
Diffstat (limited to 'clang/test/Analysis/Malloc+NewDelete_intersections.cpp')
-rw-r--r-- | clang/test/Analysis/Malloc+NewDelete_intersections.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/Malloc+NewDelete_intersections.cpp b/clang/test/Analysis/Malloc+NewDelete_intersections.cpp index 310663646a1..d10020dc8e6 100644 --- a/clang/test/Analysis/Malloc+NewDelete_intersections.cpp +++ b/clang/test/Analysis/Malloc+NewDelete_intersections.cpp @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete -std=c++11 -verify %s -// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete,alpha.cplusplus.NewDeleteLeaks -std=c++11 -verify %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete,cplusplus.NewDeleteLeaks -std=c++11 -verify %s typedef __typeof(sizeof(int)) size_t; void *malloc(size_t); |