summaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases/Linux/aligned_alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/sanitizer_common/TestCases/Linux/aligned_alloc.c')
-rw-r--r--test/sanitizer_common/TestCases/Linux/aligned_alloc.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/sanitizer_common/TestCases/Linux/aligned_alloc.c b/test/sanitizer_common/TestCases/Linux/aligned_alloc.c
deleted file mode 100644
index 12af18dd32a1..000000000000
--- a/test/sanitizer_common/TestCases/Linux/aligned_alloc.c
+++ /dev/null
@@ -1,8 +0,0 @@
-// RUN: %clang -std=c11 -O0 %s -o %t && %run %t
-#include <stdlib.h>
-extern void *aligned_alloc (size_t alignment, size_t size);
-int main() {
- volatile void *p = aligned_alloc(128, 1024);
- free((void*)p);
- return 0;
-}