diff options
author | Eric Christopher <echristo@gmail.com> | 2013-04-27 01:07:22 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-04-27 01:07:22 +0000 |
commit | 85c16ef612c48e3fce1d75d9c046edc69cb46091 (patch) | |
tree | bc51be08c16c5c400039214220a692876ebddabb | |
parent | 5b0ce3570c03919f71cab6ef8ed2312d2b707ca2 (diff) | |
download | external_llvm-85c16ef612c48e3fce1d75d9c046edc69cb46091.zip external_llvm-85c16ef612c48e3fce1d75d9c046edc69cb46091.tar.gz external_llvm-85c16ef612c48e3fce1d75d9c046edc69cb46091.tar.bz2 |
Move the XFAIL out of the middle of a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180659 91177308-0d34-0410-b5e6-96231b3b80d8
-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 db9c4c6..a78aa62 100644 --- a/test/DebugInfo/member-pointers.ll +++ b/test/DebugInfo/member-pointers.ll @@ -1,4 +1,5 @@ ; REQUIRES: object-emission +; XFAIL: hexagon ; RUN: llc -filetype=obj -O0 < %s > %t ; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s @@ -10,7 +11,6 @@ ; 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: -; XFAIL: hexagon ; struct S { ; }; ; |