From 59858cf7926702596cf708daf21aeaf5b6feedf8 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 27 Jul 2009 16:11:46 +0000 Subject: Change the assembly syntax for nsw, nuw, and exact, putting them after their associated opcodes rather than before. This makes them a little easier to read. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77194 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Analysis/ScalarEvolution/nsw.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/Analysis') diff --git a/test/Analysis/ScalarEvolution/nsw.ll b/test/Analysis/ScalarEvolution/nsw.ll index 245ed6f36b..26528c9300 100644 --- a/test/Analysis/ScalarEvolution/nsw.ll +++ b/test/Analysis/ScalarEvolution/nsw.ll @@ -22,7 +22,7 @@ bb: ; preds = %bb1, %bb.nph %tmp6 = sext i32 %i.01 to i64 ; [#uses=1] %tmp7 = getelementptr double* %p, i64 %tmp6 ; [#uses=1] store double %tmp5, double* %tmp7, align 8 - %tmp8 = nsw add i32 %i.01, 1 ; [#uses=2] + %tmp8 = add nsw i32 %i.01, 1 ; [#uses=2] br label %bb1 bb1: ; preds = %bb -- cgit v1.2.3