2011-08-20 07:41:35 +08:00
|
|
|
// PR1013
|
|
|
|
// Check to make sure debug symbols use the correct name for globals and
|
|
|
|
// functions. Will not assemble if it fails to.
|
2015-10-08 12:24:12 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -o - %s | FileCheck %s
|
2011-08-20 07:41:35 +08:00
|
|
|
|
2011-08-20 07:46:18 +08:00
|
|
|
// CHECK: f\01oo"
|
2011-08-20 07:41:35 +08:00
|
|
|
int foo __asm__("f\001oo");
|
|
|
|
|
|
|
|
int bar() {
|
|
|
|
return foo;
|
|
|
|
}
|