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

Unified Diff: crosstest/test_icmp_main.cpp

Issue 466543002: Subzero: Fix a debugging string in the test_icmp crosstest. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crosstest/test_icmp_main.cpp
diff --git a/crosstest/test_icmp_main.cpp b/crosstest/test_icmp_main.cpp
index 758b1ef44054237aa46a0f9caf229e3f3ce9d5bc..fa2eebda7126ea59e97bad3085fa0caa7d36e65b 100644
--- a/crosstest/test_icmp_main.cpp
+++ b/crosstest/test_icmp_main.cpp
@@ -46,7 +46,7 @@ void testsInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
} Funcs[] = {
#define X(cmp, op) \
{ \
- STR(inst), (FuncTypeUnsigned)icmp##cmp, \
+ STR(cmp), (FuncTypeUnsigned)icmp##cmp, \
(FuncTypeUnsigned)Subzero_::icmp##cmp \
} \
,
@@ -54,7 +54,7 @@ void testsInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
#undef X
#define X(cmp, op) \
{ \
- STR(inst), (FuncTypeUnsigned)(FuncTypeSigned)icmp##cmp, \
+ STR(cmp), (FuncTypeUnsigned)(FuncTypeSigned)icmp##cmp, \
(FuncTypeUnsigned)(FuncTypeSigned)Subzero_::icmp##cmp \
} \
,
@@ -133,7 +133,7 @@ void testsVecInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
} Funcs[] = {
#define X(cmp, op) \
{ \
- STR(inst), (FuncTypeUnsigned)icmp##cmp, \
+ STR(cmp), (FuncTypeUnsigned)icmp##cmp, \
(FuncTypeUnsigned)Subzero_::icmp##cmp \
} \
,
@@ -141,7 +141,7 @@ void testsVecInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
#undef X
#define X(cmp, op) \
{ \
- STR(inst), (FuncTypeUnsigned)(FuncTypeSigned)icmp##cmp, \
+ STR(cmp), (FuncTypeUnsigned)(FuncTypeSigned)icmp##cmp, \
(FuncTypeUnsigned)(FuncTypeSigned)Subzero_::icmp##cmp \
} \
,
@@ -204,7 +204,7 @@ void testsVecI1(size_t &TotalTests, size_t &Passes, size_t &Failures) {
FuncType FuncSz;
} Funcs[] = {
#define X(cmp, op) \
- { STR(inst), (FuncType)icmpi1##cmp, (FuncType)Subzero_::icmpi1##cmp } \
+ { STR(cmp), (FuncType)icmpi1##cmp, (FuncType)Subzero_::icmpi1##cmp } \
,
ICMP_U_TABLE
ICMP_S_TABLE
« 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