summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/SharedLibs/start-deactivated-so.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/SharedLibs/start-deactivated-so.cc')
-rw-r--r--test/asan/TestCases/SharedLibs/start-deactivated-so.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/asan/TestCases/SharedLibs/start-deactivated-so.cc b/test/asan/TestCases/SharedLibs/start-deactivated-so.cc
deleted file mode 100644
index 9611fa5ba..000000000
--- a/test/asan/TestCases/SharedLibs/start-deactivated-so.cc
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-
-extern "C" void do_another_bad_thing() {
- char *volatile p = (char *)malloc(100);
- printf("%hhx\n", p[105]);
-}