Fix a lit test failure after D54438

llvm-svn: 352290
This commit is contained in:
Kristof Umann 2019-01-26 21:22:58 +00:00
parent 37a8e65a60
commit 64c3fe9103
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
// REQUIRES: static-analyzer
// RUN: clang-tidy %s -checks='-*,clang-analyzer-unix.Malloc' -config='{CheckOptions: [{ key: "clang-analyzer-unix.Malloc:Optimistic", value: true}]}' -- | FileCheck %s
// RUN: clang-tidy %s -checks='-*,clang-analyzer-unix.Malloc' -config='{CheckOptions: [{ key: "clang-analyzer-unix.DynamicMemoryModeling:Optimistic", value: true}]}' -- | FileCheck %s
typedef __typeof(sizeof(int)) size_t;
void *malloc(size_t);
void free(void *);