1 // FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=316 2 // XFAIL: android 3 // FIXME: http://llvm.org/bugs/show_bug.cgi?id=22682 4 // REQUIRES: asan-64-bits 5 // 6 // Make sure __asan_gen_* strings do not end up in the symbol table. 7 8 // RUN: %clang_asan %s -o %t.exe 9 // RUN: nm %t.exe | FileCheck %s 10 11 int x, y, z; 12 int main() { return 0; } 13 // CHECK-NOT: __asan_gen_ 14