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

Unified Diff: tests/language/vm/load_to_load_unaligned_forwarding_vm_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
Index: tests/language/vm/load_to_load_unaligned_forwarding_vm_test.dart
diff --git a/tests/language/vm/load_to_load_unaligned_forwarding_vm_test.dart b/tests/language/vm/load_to_load_unaligned_forwarding_vm_test.dart
index fbfd10ba5830ed5d008458cb31d1af9b1b2bd83e..e972647f95d7fa7fd8f4e03797aae21a9d0ca574 100644
--- a/tests/language/vm/load_to_load_unaligned_forwarding_vm_test.dart
+++ b/tests/language/vm/load_to_load_unaligned_forwarding_vm_test.dart
@@ -12,7 +12,7 @@ import "dart:typed_data";
testViewAliasing5() {
final f32 = new Float32List(2);
final raw = f32.buffer.asByteData();
- f32[0] = 1.5; // Aliased by unaligned write of the same size.
+ f32[0] = 1.5; // Aliased by unaligned write of the same size.
raw.setInt32(1, 0x00400000, Endianness.LITTLE_ENDIAN);
return f32[0];
}

Powered by Google App Engine
This is Rietveld 408576698