Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
swiftshader
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
swiftshader
Commits
89cbfb08
Commit
89cbfb08
authored
Aug 11, 2014
by
Matt Wala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Subzero: Fix a debugging string in the test_icmp crosstest.
STR(inst) should be STR(cmp). BUG=none R=jvoung@chromium.org Review URL:
https://codereview.chromium.org/466543002
parent
1bd2fce4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
test_icmp_main.cpp
crosstest/test_icmp_main.cpp
+5
-5
No files found.
crosstest/test_icmp_main.cpp
View file @
89cbfb08
...
@@ -46,7 +46,7 @@ void testsInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
...
@@ -46,7 +46,7 @@ void testsInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
}
Funcs
[]
=
{
}
Funcs
[]
=
{
#define X(cmp, op) \
#define X(cmp, op) \
{ \
{ \
STR(
inst), (FuncTypeUnsigned)icmp##cmp,
\
STR(
cmp), (FuncTypeUnsigned)icmp##cmp,
\
(FuncTypeUnsigned)Subzero_::icmp##cmp \
(FuncTypeUnsigned)Subzero_::icmp##cmp \
} \
} \
,
,
...
@@ -54,7 +54,7 @@ void testsInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
...
@@ -54,7 +54,7 @@ void testsInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
#undef X
#undef X
#define X(cmp, op) \
#define X(cmp, op) \
{ \
{ \
STR(
inst), (FuncTypeUnsigned)(FuncTypeSigned)icmp##cmp,
\
STR(
cmp), (FuncTypeUnsigned)(FuncTypeSigned)icmp##cmp,
\
(FuncTypeUnsigned)(FuncTypeSigned)Subzero_::icmp##cmp \
(FuncTypeUnsigned)(FuncTypeSigned)Subzero_::icmp##cmp \
} \
} \
,
,
...
@@ -133,7 +133,7 @@ void testsVecInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
...
@@ -133,7 +133,7 @@ void testsVecInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
}
Funcs
[]
=
{
}
Funcs
[]
=
{
#define X(cmp, op) \
#define X(cmp, op) \
{ \
{ \
STR(
inst), (FuncTypeUnsigned)icmp##cmp,
\
STR(
cmp), (FuncTypeUnsigned)icmp##cmp,
\
(FuncTypeUnsigned)Subzero_::icmp##cmp \
(FuncTypeUnsigned)Subzero_::icmp##cmp \
} \
} \
,
,
...
@@ -141,7 +141,7 @@ void testsVecInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
...
@@ -141,7 +141,7 @@ void testsVecInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
#undef X
#undef X
#define X(cmp, op) \
#define X(cmp, op) \
{ \
{ \
STR(
inst), (FuncTypeUnsigned)(FuncTypeSigned)icmp##cmp,
\
STR(
cmp), (FuncTypeUnsigned)(FuncTypeSigned)icmp##cmp,
\
(FuncTypeUnsigned)(FuncTypeSigned)Subzero_::icmp##cmp \
(FuncTypeUnsigned)(FuncTypeSigned)Subzero_::icmp##cmp \
} \
} \
,
,
...
@@ -204,7 +204,7 @@ void testsVecI1(size_t &TotalTests, size_t &Passes, size_t &Failures) {
...
@@ -204,7 +204,7 @@ void testsVecI1(size_t &TotalTests, size_t &Passes, size_t &Failures) {
FuncType
FuncSz
;
FuncType
FuncSz
;
}
Funcs
[]
=
{
}
Funcs
[]
=
{
#define X(cmp, op) \
#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_U_TABLE
ICMP_S_TABLE
ICMP_S_TABLE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment