Fix a couple of tests.

llvm-svn: 88756
This commit is contained in:
Eli Friedman 2009-11-14 04:23:25 +00:00
parent b572c92674
commit b774685c08
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
// RUN: clang-cc -analyze -analyzer-experimental-internal-checks -checker-cfref -analyzer-experimental-checks -analyzer-store=region -verify %s
typedef long unsigned int size_t;
typedef __typeof(sizeof(int)) size_t;
void *malloc(size_t);
void free(void *);

View File

@ -1,4 +1,4 @@
// clang-cc -o - -emit-llvm %s | FileCheck %s
// RUN: clang-cc -o - -emit-llvm %s | FileCheck %s
// PR5483
// Make sure we generate all three forms of the destructor when it is virtual.