diff options
author | Eric Christopher <echristo@gmail.com> | 2013-04-27 01:07:52 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-04-27 01:07:52 +0000 |
commit | 00297bad0d7458b5bcdfce3d3301957b0539b070 (patch) | |
tree | 6959b868dc527f694058576650d8f0e6a73c589e /test/DebugInfo | |
parent | 85c16ef612c48e3fce1d75d9c046edc69cb46091 (diff) |
Use the target triple from the target machine rather than the module
to determine whether or not we're on a darwin platform for debug code
emitting.
Solves the problem of a module with no triple on the command line
and no triple in the module using non-gdb ok features on darwin. Fix
up the member-pointers test to check the correct things for cross
platform (DW_FORM_flag is a good prefix).
Unfortunately no testcase because I have no ideas how to test something
without a triple and without a triple in the module yet check
precisely on two platforms. Ideas welcome.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/DebugInfo')
-rw-r--r-- | test/DebugInfo/member-pointers.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/DebugInfo/member-pointers.ll b/test/DebugInfo/member-pointers.ll index a78aa629ec..20f4e68e2a 100644 --- a/test/DebugInfo/member-pointers.ll +++ b/test/DebugInfo/member-pointers.ll @@ -7,7 +7,7 @@ ; CHECK: [[TYPE:.*]]: DW_TAG_subroutine_type ; CHECK: DW_TAG_formal_parameter ; CHECK-NEXT: DW_AT_type -; CHECK-NEXT: DW_AT_artificial [DW_FORM_flag_present] +; CHECK-NEXT: DW_AT_artificial [DW_FORM_flag ; CHECK: DW_TAG_ptr_to_member_type ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE]]}) ; IR generated from clang -g with the following source: |