diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-27 16:11:46 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-27 16:11:46 +0000 |
commit | 29392258d43bf5cd4858934b8de7170a32b3da89 (patch) | |
tree | b52ea8f18ab6085d001e07243bff4dcbb8461176 /test/Analysis | |
parent | c3f6034bd5ca88529b4d703d714b20858966e8e6 (diff) | |
download | external_llvm-29392258d43bf5cd4858934b8de7170a32b3da89.zip external_llvm-29392258d43bf5cd4858934b8de7170a32b3da89.tar.gz external_llvm-29392258d43bf5cd4858934b8de7170a32b3da89.tar.bz2 |
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.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/ScalarEvolution/nsw.ll b/test/Analysis/ScalarEvolution/nsw.ll index 245ed6f..26528c9 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 |