brintos

brintos / llvm-project-archived public Read only

0
0
Text · 220 B · 12af18d Raw
9 lines · c
1// RUN: %clang -std=c11 -O0 %s -o %t && %run %t2#include <stdlib.h>3extern void *aligned_alloc (size_t alignment, size_t size);4int main() {5  volatile void *p = aligned_alloc(128, 1024);6  free((void*)p);7  return 0;8}9