aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-08-13 19:46:45 -0700
committerMichael Forney <mforney@mforney.org>2019-08-13 19:46:45 -0700
commite3f189342c713bd3f9a31dc06d7bf403fab6c393 (patch)
treef68441e3662ab9665c2d585e29f825699228f828 /test
parent515034ef3bb5651f1ab376ca5ec9d843b3ac3503 (diff)
downloadcproc-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.c4
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;
-}