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