mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
027ead6802
use them in tests that run llvm-dwarfdump. This is in order to make tests as specific as possible. llvm-svn: 173498
9 lines
247 B
ArmAsm
9 lines
247 B
ArmAsm
// 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")
|