You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: env DEBUG_PRODUCER="my producer" llvm-mc -g -triple i386-apple-darwin10 %s -filetype=obj -o %t
|
|
// RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s
|
|
|
|
.globl _bar
|
|
_bar:
|
|
ret
|
|
|
|
// CHECK: DW_AT_producer [DW_FORM_string] ("my producer")
|