mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
99e74b090b
Same sort of bug as on ARM where the cmp+branch are lowered to br_cc (choosing the branch's debugloc for the br_cc's debugloc) then expanded out to a cmp and a br, but both using the debug loc of the br_cc, thus losing fidelity. llvm-svn: 227645
8 lines
409 B
Plaintext
8 lines
409 B
Plaintext
; RUN: llc -mtriple=powerpc-unknown-linux -O0 -filetype=asm < %S/../Inputs/line.ll | FileCheck %S/../Inputs/line.ll
|
|
|
|
; This is more complex than it looked. It's mixed up somewhere in SelectionDAG
|
|
; (legalized as br_cc, losing the separation between the comparison and the
|
|
; branch, then further lowered to cmplwi + brcc but without the fidelity that
|
|
; those two instructions are on separate lines)
|
|
; XFAIL: *
|