Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions suite/fuzz/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ struct platform platforms[] = {
{
//item 14
CS_ARCH_PPC,
CS_MODE_BIG_ENDIAN,
CS_MODE_64 | CS_MODE_BIG_ENDIAN,
"PPC-64",
"ppc64"
"ppc64be"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is 64bit, so the mode should OR with CS_MODE_64 above.

same for ppc64beqpx below.

},
{
//item 15
Expand Down Expand Up @@ -326,9 +326,9 @@ struct platform platforms[] = {
{
//item 46
CS_ARCH_PPC,
CS_MODE_BIG_ENDIAN | CS_MODE_QPX,
CS_MODE_64 | CS_MODE_BIG_ENDIAN | CS_MODE_QPX,
"ppc+qpx",
"ppcqpxbe"
"ppc64beqpx"
},

// dummy entry to mark the end of this array.
Expand Down