about summary refs log tree commit diff homepage
path: root/test/Feature/IndirectCallToBuiltin.c
blob: 2ffdb81f99a29a8b9abcb022a658066bf0821d3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang %s -emit-llvm -g -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out %t1.bc

#include <stdlib.h>
#include <stdio.h>

int main() {
  void *(*allocator)(size_t) = malloc;
  int *mem = allocator(10);

  printf("mem: %p\n", mem);
  printf("mem[0]: %d\n", mem[0]);

  return 0;
}