diff options
Diffstat (limited to 'llvm/lib/Fuzzer/test/DSOTestExtra.cpp')
| -rw-r--r-- | llvm/lib/Fuzzer/test/DSOTestExtra.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/test/DSOTestExtra.cpp b/llvm/lib/Fuzzer/test/DSOTestExtra.cpp new file mode 100644 index 00000000000..a2274d070eb --- /dev/null +++ b/llvm/lib/Fuzzer/test/DSOTestExtra.cpp @@ -0,0 +1,11 @@ +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. + +// Source code for a simple DSO. + +int DSOTestExtra(int a) { + if (a < 452345) + return 0; + return 1; +} + |

