forked from OSchip/llvm-project
[ASan] Add a test for __asan_gen_ globals labels on Darwin.
Per Nick Kledzik (http://llvm.org/bugs/show_bug.cgi?id=17976): """ For MacOSX, the labels in __cstring section should be 'L' labels, and the labels in the __const section should be non-L or 'l' labels. The later ('l') will cause the linker to remove the label in the final executable. """ , so we need to ensure that the globals emitted by ASan have appropriate labels. llvm-svn: 198022
This commit is contained in:
parent
7eab734554
commit
9d989d6b05
|
@ -0,0 +1,14 @@
|
|||
// Make sure __asan_gen_* strings have the correct prefixes on Darwin
|
||||
// ("L" in __TEXT,__cstring, "l" in __TEXT,__const
|
||||
|
||||
// RUN: %clang_asan %s -S -o %t.s
|
||||
// RUN: cat %t.s | FileCheck %s || exit 1
|
||||
|
||||
int x, y, z;
|
||||
int main() { return 0; }
|
||||
// CHECK: .section{{.*}}__TEXT,__const
|
||||
// CHECK: l___asan_gen_
|
||||
// CHECK: .section{{.*}}__TEXT,__cstring,cstring_literals
|
||||
// CHECK: L___asan_gen_
|
||||
// CHECK: L___asan_gen_
|
||||
// CHECK: L___asan_gen_
|
Loading…
Reference in New Issue