diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-04-04 10:16:51 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-04-04 10:16:51 +0000 |
| commit | a25ac912eba29c37324a2d3e5bdafb2243ab26ce (patch) | |
| tree | 12a09385ecbd923ef974a3f043dad6cd96db71d6 /llvm/test/DebugInfo | |
| parent | 444120d4bc9e65f97643cb3082730f5439bb8261 (diff) | |
| download | bcm5719-llvm-a25ac912eba29c37324a2d3e5bdafb2243ab26ce.tar.gz bcm5719-llvm-a25ac912eba29c37324a2d3e5bdafb2243ab26ce.zip | |
Tweak unconditional-branch.ll passing on any hosts, while investigating x86_64-mingw32.
Sorry for the breakage.
For now, it will fail in two ways:
1. To fail for targeting x86_64-mingw32.
<stdin>:131:8: note: possible intended match here
0x30830a0100000002 3 0 1 0 0 is_stmt
2. To fail not to find the target x86.
llc: : error: unable to get target for 'x86_64-unknown-unknown',
see --version and --triple.
llvm-svn: 205621
Diffstat (limited to 'llvm/test/DebugInfo')
| -rw-r--r-- | llvm/test/DebugInfo/unconditional-branch.ll | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/test/DebugInfo/unconditional-branch.ll b/llvm/test/DebugInfo/unconditional-branch.ll index d83be22cc7e..66155b7d003 100644 --- a/llvm/test/DebugInfo/unconditional-branch.ll +++ b/llvm/test/DebugInfo/unconditional-branch.ll @@ -1,8 +1,12 @@ ; REQUIRES: object-emission ; PR 19261 -; FIXME: It is broken for targeting x86_64-cygming. -; RUN: llc -mtriple=x86_64-unknown-unknown -fast-isel=false -O0 -filetype=obj %s -o %t +; RUN: %llc_dwarf -fast-isel=false -O0 -filetype=obj %s -o %t +; RUN: llvm-dwarfdump %t | FileCheck %s + +; FIXME: Investigating. +; XFAIL: * +; RUN: llc -mtriple=x86_64-mingw32 -fast-isel=false -O0 -filetype=obj %s -o %t ; RUN: llvm-dwarfdump %t | FileCheck %s ; CHECK: {{0x[0-9a-f]+}} 1 0 1 0 0 is_stmt |

