regressions/ck_pr: Disable rest of width checks on bi-endian platforms.

ck_pring
Samy Al Bahra 12 years ago
parent 6961547dfe
commit b220e50f54

@ -84,6 +84,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_ADD_64
if (m == 64) {
#if defined(CK_F_PR_ADD_32)

@ -80,6 +80,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_AND_64
if (m == 64) {
#if defined(CK_F_PR_AND_32)

@ -76,6 +76,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_DEC_64
if (m == 64) {
#if defined(CK_F_PR_DEC_32)

@ -81,6 +81,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_FAS_64
if (m == 64) {
#if defined(CK_F_PR_FAS_32)

@ -76,6 +76,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_INC_64
if (m == 64) {
#if defined(CK_F_PR_INC_32)

@ -76,6 +76,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_LOAD_64
if (m == 64) {
#if defined(CK_F_PR_LOAD_32)

@ -80,6 +80,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_OR_64
if (m == 64) {
#if defined(CK_F_PR_OR_32)

@ -84,6 +84,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_SUB_64
if (m == 64) {
#if defined(CK_F_PR_SUB_32)

@ -80,6 +80,11 @@ static void
rg_width(int m)
{
/* Other architectures are bi-endian. */
#if !defined(__x86__) && !defined(__x86_64__)
return;
#endif
#ifdef CK_F_PR_XOR_64
if (m == 64) {
#if defined(CK_F_PR_XOR_32)

Loading…
Cancel
Save