diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-02-27 22:53:42 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-02-27 22:53:42 +0000 |
commit | fddefccf059cb8e38cf948f4bfd6e3d481f0dd34 (patch) | |
tree | 920fba1cb56e784e8eb953f66f3d654f29ad708b /test/Linker | |
parent | c68d127b2c5a233c5e3f9dd59ca4ab335419d9dd (diff) |
XFAIL test until <rdar://problem/10913281> is fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151578 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Linker')
-rw-r--r-- | test/Linker/link-type-names.ll | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Linker/link-type-names.ll b/test/Linker/link-type-names.ll index bfc3b64361..a97b352738 100644 --- a/test/Linker/link-type-names.ll +++ b/test/Linker/link-type-names.ll @@ -1,7 +1,10 @@ ; RUN: echo "%X = type { i32 } @G2 = global %X { i32 4 }" > %t.ll ; RUN: llvm-link %s %t.ll -S | FileCheck %s +; XFAIL: * ; PR11464 +; FIXME: XFAIL until <rdar://problem/10913281> is addressed. + %X = type { i32 } @G = global %X { i32 4 } |