summaryrefslogtreecommitdiff
path: root/test/Analysis
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-27 16:11:46 +0000
committerDan Gohman <gohman@apple.com>2009-07-27 16:11:46 +0000
commit59858cf7926702596cf708daf21aeaf5b6feedf8 (patch)
treeb52ea8f18ab6085d001e07243bff4dcbb8461176 /test/Analysis
parent07ad19b509530b43e6a9acc5c1285cb560dd7198 (diff)
downloadllvm-59858cf7926702596cf708daf21aeaf5b6feedf8.tar.gz
llvm-59858cf7926702596cf708daf21aeaf5b6feedf8.tar.bz2
llvm-59858cf7926702596cf708daf21aeaf5b6feedf8.tar.xz
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
Diffstat (limited to 'test/Analysis')
-rw-r--r--test/Analysis/ScalarEvolution/nsw.ll2
1 files changed, 1 insertions, 1 deletions
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 ; <i64> [#uses=1]
%tmp7 = getelementptr double* %p, i64 %tmp6 ; <double*> [#uses=1]
store double %tmp5, double* %tmp7, align 8
- %tmp8 = nsw add i32 %i.01, 1 ; <i32> [#uses=2]
+ %tmp8 = add nsw i32 %i.01, 1 ; <i32> [#uses=2]
br label %bb1
bb1: ; preds = %bb