llvm-6502/test/Analysis/LoopInfo/2003-05-15-NestingProblem.ll
Dan Gohman 8dae138d06 Fix WriteAsOperand to not emit a leading space character. Adjust
its callers to emit a space character before calling it when a
space is needed.

This fixes several spurious whitespace issues in
ScalarEvolution's debug dumps. See the test changes for
examples.

This also fixes odd space-after-tab indentation in the output
for switch statements, and changes calls from being printed like
this:
  call void @foo( i32 %x )
to this:
  call void @foo(i32 %x)


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56196 91177308-0d34-0410-b5e6-96231b3b80d8
2008-09-14 17:21:12 +00:00

31 lines
941 B
LLVM

; This testcase was incorrectly computing that the loopentry.7 loop was
; not a child of the loopentry.6 loop.
;
; RUN: llvm-as < %s | opt -analyze -loops | \
; RUN: grep {^ Loop Containing: %loopentry.7}
define void @getAndMoveToFrontDecode() {
br label %endif.2
endif.2: ; preds = %loopexit.5, %0
br i1 false, label %loopentry.5, label %UnifiedExitNode
loopentry.5: ; preds = %loopexit.6, %endif.2
br i1 false, label %loopentry.6, label %UnifiedExitNode
loopentry.6: ; preds = %loopentry.7, %loopentry.5
br i1 false, label %loopentry.7, label %loopexit.6
loopentry.7: ; preds = %loopentry.7, %loopentry.6
br i1 false, label %loopentry.7, label %loopentry.6
loopexit.6: ; preds = %loopentry.6
br i1 false, label %loopentry.5, label %loopexit.5
loopexit.5: ; preds = %loopexit.6
br i1 false, label %endif.2, label %UnifiedExitNode
UnifiedExitNode: ; preds = %loopexit.5, %loopentry.5, %endif.2
ret void
}