mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 01:43:06 +00:00
f4643f6392
Differential Revision: http://reviews.llvm.org/D18705 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265174 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
311 B
C++
15 lines
311 B
C++
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
// Test with a leak.
|
|
#include <cstdint>
|
|
#include <cstddef>
|
|
|
|
static volatile void *Sink;
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
|
Sink = new int;
|
|
return 0;
|
|
}
|
|
|