Skip to content

Commit ae667c4

Browse files
committed
[libFuzzer] make a test for exploding dfsan labels more agressive
llvm-svn: 352819
1 parent a78a44d commit ae667c4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

compiler-rt/test/fuzzer/ExplodeDFSanLabelsTest.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ __attribute__((noinline))
1212
void f(uint8_t a, uint8_t b, uint8_t c, uint8_t d) {
1313
if (a == b + 1 && c == d + 2)
1414
sink++;
15+
if (a == d + 1 && c == b + 2)
16+
sink++;
1517
}
1618

1719
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {

0 commit comments

Comments
 (0)