blob: aece696554293939d514d8baee5e25709dd777d6 [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>
struct StructType {
float a;
int *b;
};
union UnionType {
int a;
int *b;
int c[100];
struct StructType obj;
};
void func() {
int *tmp = (int*) malloc(sizeof(int));
union UnionType s1;
s1.b = tmp;
int *c = s1.b;
int d = s1.a;
int arr = s1.c[0];
struct StructType x = s1.obj;
float y = x.a;
}