Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Unified Diff: tests/lib/typeddata/float32x4_test.dart

Issue 12534006: Port SIMD types from dart:scalarlist to dart:typeddata. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge fixes Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/lib/typeddata/float32x4_list_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/typeddata/float32x4_test.dart
diff --git a/tests/lib/scalarlist/float32x4_test.dart b/tests/lib/typeddata/float32x4_test.dart
similarity index 99%
copy from tests/lib/scalarlist/float32x4_test.dart
copy to tests/lib/typeddata/float32x4_test.dart
index 943f28bd5dc1dab21d8b8391da5530296db81abf..deb0ce862b48f3fe0544a6d23ccfa2b9bba662c9 100644
--- a/tests/lib/scalarlist/float32x4_test.dart
+++ b/tests/lib/typeddata/float32x4_test.dart
@@ -5,7 +5,7 @@
// Library tag to be able to run in html test framework.
library float32x4_test;
-import 'dart:scalarlist';
+import 'dart:typeddata';
testAdd() {
var m = new Float32x4(-1.0, -2.0, -3.0, -4.0);
@@ -351,13 +351,13 @@ testGetters() {
main() {
for (int i = 0; i < 3000; i++) {
+ testAdd();
testGetters();
testSetters();
testBitOperators();
testConversions();
testSelect();
testShuffle();
- testAdd();
testSub();
testNegate();
testMul();
« no previous file with comments | « tests/lib/typeddata/float32x4_list_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698