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

Unified Diff: runtime/platform/globals.h

Issue 692703003: Work around GCC bug that results in incorrect simd128_value_t copying. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/platform/globals.h
diff --git a/runtime/platform/globals.h b/runtime/platform/globals.h
index ac0ab6fe7ff509d5dc5af3e45daa8ecc50adf011..1e8b786ee368fc123430590602dc46bc273ad5e1 100644
--- a/runtime/platform/globals.h
+++ b/runtime/platform/globals.h
@@ -98,8 +98,8 @@
struct simd128_value_t {
union {
- float float_storage[4];
int32_t int_storage[4];
+ float float_storage[4];
double double_storage[2];
};
simd128_value_t& readFrom(const float* v) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698