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

Unified Diff: tests/standalone/float_array_test.dart

Issue 11032011: Intrinsify Float32Array_setIndexed on IA32 and X64 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix register usage. Created 8 years, 3 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 | « runtime/vm/intrinsifier_x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/float_array_test.dart
diff --git a/tests/standalone/float_array_test.dart b/tests/standalone/float_array_test.dart
index 68d71e9233de4028e41d74c157aed8e7496671c8..dab3734f693ed5051f89baee00113ef363e0979d 100644
--- a/tests/standalone/float_array_test.dart
+++ b/tests/standalone/float_array_test.dart
@@ -50,6 +50,9 @@ void testIndexOutOfRange() {
List<num> list = const [0.0, 1.0, 2.0, 3.0];
Expect.throws(() {
+ floatArray[5] = 2.0;
+ });
+ Expect.throws(() {
floatArray.setRange(0, 4, list);
});
« no previous file with comments | « runtime/vm/intrinsifier_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698