commit | 3e36ec1d18188810b19bb7d2153039ae2cc8c0db | [log] [tgz] |
---|---|---|
author | Kostya Serebryany <kcc@google.com> | Sat Sep 17 05:04:47 2016 +0000 |
committer | Kostya Serebryany <kcc@google.com> | Sat Sep 17 05:04:47 2016 +0000 |
tree | c6b6a188e57ec99534ee410782dbd6f878f0e747 | |
parent | 8ad415574543c5ee4de98678fbe7452f60a086e3 [diff] [blame] |
[libFuzzer] change trace-pc to use 8-byte guards llvm-svn: 281810
diff --git a/llvm/lib/Fuzzer/test/DSO2.cpp b/llvm/lib/Fuzzer/test/DSO2.cpp new file mode 100644 index 0000000..46c80e4 --- /dev/null +++ b/llvm/lib/Fuzzer/test/DSO2.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 DSO2(int a) { + if (a < 3598235) + return 0; + return 1; +} +