directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
13 lines
113 B
C
13 lines
113 B
C
// RUN: clang %s -emit-llvm -o %t
|
|
typedef struct a b;
|
|
|
|
b* x;
|
|
|
|
struct a {
|
|
b* p;
|
|
};
|
|
|
|
void f() {
|
|
b* z = x->p;
|
|
}
|