aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/bool-cast-implicit.c
diff options
Diffstat (limited to 'validation/bool-cast-implicit.c')
-rw-r--r--validation/bool-cast-implicit.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/validation/bool-cast-implicit.c b/validation/bool-cast-implicit.c
deleted file mode 100644
index 9d89443b..00000000
--- a/validation/bool-cast-implicit.c
+++ /dev/null
@@ -1,25 +0,0 @@
-typedef unsigned int u32;
-typedef int s32;
-typedef void *vdp;
-typedef int *sip;
-typedef double dbl;
-typedef unsigned short __attribute__((bitwise)) le16;
-
-static _Bool fs32(s32 a) { return a; }
-static _Bool fu32(u32 a) { return a; }
-static _Bool fvdp(vdp a) { return a; }
-static _Bool fsip(sip a) { return a; }
-static _Bool fdbl(dbl a) { return a; }
-static _Bool ffun(void) { return ffun; }
-
-static _Bool fres(le16 a) { return a; }
-
-/*
- * check-name: bool-cast-implicit
- * check-command: test-linearize -m64 $file
- * check-output-ignore
- * check-output-excludes: cast\\.
- *
- * check-error-start
- * check-error-end
- */