diff options
author | Calin Juravle <calin@google.com> | 2014-11-24 16:36:44 +0000 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2014-11-24 16:36:44 +0000 |
commit | 8c3961a4b7916ec570c8f90b8f277b6f67470276 (patch) | |
tree | a476d210c5d85de4f495b87202f8dc4ea8848025 /test/431-optimizing-arith-shifts | |
parent | 9aec02fc5df5518c16f1e5a9b6cb198a192db973 (diff) | |
download | art-8c3961a4b7916ec570c8f90b8f277b6f67470276.zip art-8c3961a4b7916ec570c8f90b8f277b6f67470276.tar.gz art-8c3961a4b7916ec570c8f90b8f277b6f67470276.tar.bz2 |
Fixed missing "//".
Change-Id: Ife5338d469e9db0b0ea37746dee11a40a52615f1
Diffstat (limited to 'test/431-optimizing-arith-shifts')
-rw-r--r-- | test/431-optimizing-arith-shifts/src/Main.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/431-optimizing-arith-shifts/src/Main.java b/test/431-optimizing-arith-shifts/src/Main.java index c29eeeb..d8667c6 100644 --- a/test/431-optimizing-arith-shifts/src/Main.java +++ b/test/431-optimizing-arith-shifts/src/Main.java @@ -209,7 +209,7 @@ public class Main { expectEquals(1L, $opt$UShr(2147483648L, 31L)); expectEquals(1073741824L, $opt$UShr(2147483648L, 1L)); - Long shifts can use use up to 6 lower bits. + // Long shifts can use use up to 6 lower bits. expectEquals(1L, $opt$UShr(4294967296L, 32L)); expectEquals(7L, $opt$UShr(60129542144L, 33L)); expectEquals(0L, $opt$UShr(Long.MAX_VALUE, 63L)); |