summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/asan/TestCases/Linux/globals-gc-sections.cc
blob: 72a9e9498f85d3a3ae61c39a08392706fe761363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=0
// RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=1

// https://code.google.com/p/address-sanitizer/issues/detail?id=260
// XFAIL: *

int undefined();

int (*unused)() = undefined;

int main() {
        return 0;
}
OpenPOWER on IntegriCloud