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

Unified Diff: crosstest/vectors.h

Issue 435353002: Subzero: Fix and clean up some cross tests. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Fix newlines and filename Created 6 years, 4 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 | « crosstest/test_vector_ops_main.cpp ('k') | crosstest/vectors.def » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crosstest/vectors.h
diff --git a/crosstest/vectors.h b/crosstest/vectors.h
index 9924eb504f7237de018269f8e056c4f92c3ac5e2..2fdb482868cff246d37cbf8491886312b14e3cb0 100644
--- a/crosstest/vectors.h
+++ b/crosstest/vectors.h
@@ -20,6 +20,13 @@
#include <string>
#include <sstream>
+// The driver and the test program may be compiled by different
+// versions of clang, with different standard libraries that have
+// different definitions of int8_t. Specifically, int8_t may be
+// typedef'd as either 'char' or 'signed char', which mangle to
+// different strings. Avoid int8_t and use an explicit myint8_t.
+typedef signed char myint8_t;
+
#include "vectors.def"
// PNaCl portable vector types
« no previous file with comments | « crosstest/test_vector_ops_main.cpp ('k') | crosstest/vectors.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698