diff options
author | Michael Forney <mforney@mforney.org> | 2019-08-13 19:46:45 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-08-13 19:46:45 -0700 |
commit | e3f189342c713bd3f9a31dc06d7bf403fab6c393 (patch) | |
tree | f68441e3662ab9665c2d585e29f825699228f828 /test | |
parent | 515034ef3bb5651f1ab376ca5ec9d843b3ac3503 (diff) | |
download | cproc-e3f189342c713bd3f9a31dc06d7bf403fab6c393.tar.xz |
Remove test corresponding to cast-same-type.qbe
This should have been removed when "expr: Fix cast of same type" was
reverted in 0d1969024c.
Diffstat (limited to 'test')
-rw-r--r-- | test/cast-same-type.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/cast-same-type.c b/test/cast-same-type.c deleted file mode 100644 index 5602057..0000000 --- a/test/cast-same-type.c +++ /dev/null @@ -1,4 +0,0 @@ -struct S {int x;} s; -int main(void) { - return ((struct S)s).x; -} |