summaryrefslogtreecommitdiff
path: root/test/Analysis/ScalarEvolution/2008-02-12-SMAXTripCount.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-09-14 17:21:12 +0000
committerDan Gohman <gohman@apple.com>2008-09-14 17:21:12 +0000
commit8dae138d06df9cecbee421ef645d0b74f9ac13d7 (patch)
tree2261c78107eccfa0aaa6762421bc268d6c7bd627 /test/Analysis/ScalarEvolution/2008-02-12-SMAXTripCount.ll
parente009180f2bbcf5edbe3b583936c37c4b3be2d082 (diff)
downloadllvm-8dae138d06df9cecbee421ef645d0b74f9ac13d7.tar.gz
llvm-8dae138d06df9cecbee421ef645d0b74f9ac13d7.tar.bz2
llvm-8dae138d06df9cecbee421ef645d0b74f9ac13d7.tar.xz
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
Diffstat (limited to 'test/Analysis/ScalarEvolution/2008-02-12-SMAXTripCount.ll')
-rw-r--r--test/Analysis/ScalarEvolution/2008-02-12-SMAXTripCount.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/ScalarEvolution/2008-02-12-SMAXTripCount.ll b/test/Analysis/ScalarEvolution/2008-02-12-SMAXTripCount.ll
index 292ea99b6b..74e826847b 100644
--- a/test/Analysis/ScalarEvolution/2008-02-12-SMAXTripCount.ll
+++ b/test/Analysis/ScalarEvolution/2008-02-12-SMAXTripCount.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop loop: ( 100 + ( -100 smax %n)) iterations!}
+; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop loop: (100 + (-100 smax %n)) iterations!}
; PR2002
define void @foo(i8 %n) {