Home | History | Annotate | Download | only in ARM
      1 // RUN: llvm-dsymutil -f -oso-prepend-path=%p/.. %p/../Inputs/thumb.armv7m -o - | llvm-dwarfdump - | FileCheck %s
      2 // RUN: llvm-dsymutil -arch armv7m -f -oso-prepend-path=%p/.. %p/../Inputs/thumb.armv7m -o - | llvm-dwarfdump - | FileCheck %s
      3 
      4 /* Compile with:
      5    clang -c thumb.c -arch armv7m -g
      6    clang thumb.o -o thumb.armv7m -arch armv7m -nostdlib -static -Wl,-e,_start
      7 */
      8 
      9 void start() {
     10 }
     11 
     12 CHECK: DW_AT_name{{.*}}"thumb.c"
     13 CHECK: DW_AT_name{{.*}}"start"
     14