summaryrefslogtreecommitdiff
path: root/gcc_arm/testsuite/gcc.c-torture/execute/memcheck/driver.h
diff options
context:
space:
mode:
authorcamthesaxman <camthesaxman@users.noreply.github.com>2020-01-30 02:12:24 -0600
committercamthesaxman <camthesaxman@users.noreply.github.com>2020-01-30 02:12:24 -0600
commit3397016bff4dd62706f7d807a5196e79ae9c30b6 (patch)
tree98e90037403f29116f3ea6d0d8a1ba3623f4e968 /gcc_arm/testsuite/gcc.c-torture/execute/memcheck/driver.h
parent4f87fae05b87cefd4f8fc0b2b18e639b0fad25fc (diff)
delete test suite
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/execute/memcheck/driver.h')
-rwxr-xr-xgcc_arm/testsuite/gcc.c-torture/execute/memcheck/driver.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/execute/memcheck/driver.h b/gcc_arm/testsuite/gcc.c-torture/execute/memcheck/driver.h
deleted file mode 100755
index d8d22d2..0000000
--- a/gcc_arm/testsuite/gcc.c-torture/execute/memcheck/driver.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* GNU C dependencies:
- Checker support hooks
- ISO C 9x array element initialization
- void-pointer arithmetic */
-
-typedef __SIZE_TYPE__ size_t;
-
-extern void *malloc (size_t);
-extern int printf (const char *, ...);
-
-/* This comes from gcc internals. Should be exported. */
-enum memory_use_mode {MEMORY_USE_BAD = 0, MEMORY_USE_RO = 1,
- MEMORY_USE_WO = 2, MEMORY_USE_RW = 3,
- MEMORY_USE_TW = 6, MEMORY_USE_DONT = 99};
-
-enum access_mode {
- ACCESS_NONE = 0, ACCESS_RO = 1, ACCESS_WO = 2, ACCESS_RW = 3
-};
-
-#define NOCHECK __attribute__ ((no_check_memory_usage))
-
-void mark_region (const void *, size_t, enum access_mode) NOCHECK;
-void setup () NOCHECK;
-void test ();
-extern int expect_error;
-
-void *c_malloc (size_t) NOCHECK;
-void c_free (void *) NOCHECK;