blob: b784272825d64760c934c49760ba8c08e3c88f36 [file] [log] [blame]
//--Make sure we can run DSA on it!
//RUN: llvm-gcc %s -c --emit-llvm -o - | \
//RUN: dsaopt -dsa-bu -dsa-td -disable-output
#include <stdlib.h>
void func() {
int a = 10;
int *b = &a;
int **c = &b;
int *d = *c;
int e = *d;
}