Test for PR1013.

llvm-svn: 31886
This commit is contained in:
Jim Laskey 2006-11-20 21:58:02 +00:00
parent e06180bab8
commit efcaa4a8f5
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// Check to make sure debug symbols use the correct name for globals and
// functions. Will not assemble if it fails to.
// RUN: %llvmgcc -O0 -g -c %s
// PR1013
int foo __asm__("f\001oo");
int bar() {
return foo;
}