Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / gc-sections.test
blob415b80c291bdced039ab619fc314dfbd4b4e1a39
1 REQUIRES: linux, lld-available
2 # LLD isn't pruning functions as we expect it to with ASAN on i386.
3 UNSUPPORTED: i386
5 No gc-sections:
6 RUN: %cpp_compiler %S/GcSectionsTest.cpp -o %t
7 RUN: nm %t | grep UnusedFunctionShouldBeRemovedByLinker | count 1
9 With gc-sections. Currently, we can't remove unused code except with LLD.
10 RUN: %cpp_compiler %S/GcSectionsTest.cpp -o %t -fuse-ld=lld -ffunction-sections -Wl,-gc-sections
11 RUN: nm %t | not grep UnusedFunctionShouldBeRemovedByLinker
12 RUN: %run %t -runs=0 2>&1 | FileCheck %s
14 CHECK-NOT: ERROR: The size of coverage PC tables does not match