Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / Switch2Test.cpp
blob5d85bd4705133b6897289d0b4280e0f6100fdeed
1 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
2 // See https://llvm.org/LICENSE.txt for license information.
3 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5 // Simple test for a fuzzer. The fuzzer must find the interesting switch value.
6 #include <cstddef>
7 #include <cstdint>
8 #include <cstdio>
9 #include <cstdlib>
10 #include <cstring>
12 int Switch(int a) {
13 switch(a) {
14 case 100001: return 1;
15 case 100002: return 2;
16 case 100003: return 4;
18 return 0;
21 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
22 const int N = 3;
23 if (Size < N * sizeof(int)) return 0;
24 int Res = 0;
25 for (int i = 0; i < N; i++) {
26 int X;
27 memcpy(&X, Data + i * sizeof(int), sizeof(int));
28 Res += Switch(X);
30 if (Res == 5 || Res == 3 || Res == 6 || Res == 7) {
31 fprintf(stderr, "BINGO; Found the target, exiting; Res=%d\n", Res);
32 exit(1);
34 return 0;