Fix test 131 for 32 bits targets
This commit is contained in:
parent
a82aff3337
commit
5b28165fbf
1 changed files with 9 additions and 9 deletions
|
@ -1,10 +1,10 @@
|
||||||
#include<stdio.h>
|
#include<stdio.h>
|
||||||
|
|
||||||
#define DATA 0x1234567890abcd, 0x5a5aa5a5f0f00f0f
|
#define DATA 0x1234567890abcdll, 0x5a5aa5a5f0f00f0fll
|
||||||
|
|
||||||
struct s {
|
struct s {
|
||||||
long int a;
|
long long int a;
|
||||||
long int b;
|
long long int b;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
|
@ -16,14 +16,14 @@ foo1(void)
|
||||||
{
|
{
|
||||||
struct s d = { DATA };
|
struct s d = { DATA };
|
||||||
struct s *p = &d;
|
struct s *p = &d;
|
||||||
long int x = 0;
|
long long int x = 0;
|
||||||
return *p;
|
return *p;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct s
|
struct s
|
||||||
foo2(void)
|
foo2(void)
|
||||||
{
|
{
|
||||||
long int unused = 0;
|
long long int unused = 0;
|
||||||
return gp->d;
|
return gp->d;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ struct s
|
||||||
foo3(void)
|
foo3(void)
|
||||||
{
|
{
|
||||||
struct s d = { DATA };
|
struct s d = { DATA };
|
||||||
long int unused = 0;
|
long long int unused = 0;
|
||||||
return d;
|
return d;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,10 +40,10 @@ main(void)
|
||||||
{
|
{
|
||||||
struct s d;
|
struct s d;
|
||||||
d = foo1();
|
d = foo1();
|
||||||
printf("%lx %lx\n", d.a, d.b);
|
printf("%llx %llx\n", d.a, d.b);
|
||||||
d = foo2();
|
d = foo2();
|
||||||
printf("%lx %lx\n", d.a, d.b);
|
printf("%llx %llx\n", d.a, d.b);
|
||||||
d = foo3();
|
d = foo3();
|
||||||
printf("%lx %lx\n", d.a, d.b);
|
printf("%llx %llx\n", d.a, d.b);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue