12 lines · cpp
1// PR10132// Check to make sure debug symbols use the correct name for globals and3// functions. Will not assemble if it fails to.4// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -o - %s | FileCheck %s5 6// CHECK: f\01oo"7int foo __asm__("f\001oo");8 9int bar() {10 return foo;11}12