diff options
Diffstat (limited to 'compiler-rt/test/fuzzer/OnlySomeBytesTest.cpp')
-rw-r--r-- | compiler-rt/test/fuzzer/OnlySomeBytesTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/test/fuzzer/OnlySomeBytesTest.cpp b/compiler-rt/test/fuzzer/OnlySomeBytesTest.cpp index bf10df8d9b8..d60cf3e5fa9 100644 --- a/compiler-rt/test/fuzzer/OnlySomeBytesTest.cpp +++ b/compiler-rt/test/fuzzer/OnlySomeBytesTest.cpp @@ -36,7 +36,8 @@ __attribute__((noinline)) void f0(IN in) { } } -__attribute__((noinline)) void fC(IN in) { if (in[2] == 'C') f0(in); } +__attribute__((noinline)) void fD(IN in) { f0(in); } +__attribute__((noinline)) void fC(IN in) { if (in[2] == 'C') fD(in); } __attribute__((noinline)) void fB(IN in) { if (in[1] == 'B') fC(in); } __attribute__((noinline)) void fA(IN in) { if (in[0] == 'A') fB(in); } |