You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
347 B
14 lines
347 B
// 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;
|
|
}
|