diff options
author | camthesaxman <camthesaxman@users.noreply.github.com> | 2020-01-30 02:12:24 -0600 |
---|---|---|
committer | camthesaxman <camthesaxman@users.noreply.github.com> | 2020-01-30 02:12:24 -0600 |
commit | 3397016bff4dd62706f7d807a5196e79ae9c30b6 (patch) | |
tree | 98e90037403f29116f3ea6d0d8a1ba3623f4e968 /gcc_arm/testsuite/gcc.c-torture/unsorted/i386bug.c | |
parent | 4f87fae05b87cefd4f8fc0b2b18e639b0fad25fc (diff) |
delete test suite
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/unsorted/i386bug.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/unsorted/i386bug.c | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/unsorted/i386bug.c b/gcc_arm/testsuite/gcc.c-torture/unsorted/i386bug.c deleted file mode 100755 index 395bfa6..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/unsorted/i386bug.c +++ /dev/null @@ -1,51 +0,0 @@ -typedef union { - struct { - long RH, LH; - } v; - struct { - unsigned char B1; - } u; -} twohalves; - - -typedef union { - long cint; - twohalves hhfield; - -} memoryword; - - -extern memoryword mem[262]; - -long znewstructure ( p ) -long p; -{ - long q, r; - { - q = mem [ p + 2 ] .hhfield .v.RH; - r = mem [ q + 1 ] .hhfield .v.LH; - do { - q = r; - r = mem [ r ] .hhfield .v.RH; - } while ( ! ( r == p ) ); - r = foo((long) ( 3 )); - mem [ q ] .hhfield .v.RH = r; - mem [ r + 2 ] = mem [ p + 2 ]; - if ( mem [ p + 2 ] .hhfield .v.LH == 0 ) - { - q = mem [ p + 2 ] .hhfield .v.RH + 1; - while ( mem [ q ] .hhfield .v.RH != p ) q = mem [ q ] .hhfield .v.RH; - mem [ q ] .hhfield .v.RH = r; - } - } - mem [ r ] .hhfield .u.B1 = mem [ p ] .hhfield .u.B1; - mem [ r + 1 ] .hhfield .v.LH = p; - - q = foo((long) ( 3 )); - - mem [ r + 1 ] .hhfield .v.RH = q; - mem [ q + 2 ] .hhfield .v.RH = r; - - - return(r); -} |