directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
7 lines
172 B
C
7 lines
172 B
C
// RUN: clang %s -emit-llvm -o %t
|
|
|
|
static int staticfun(void);
|
|
int (*staticuse1)(void) = staticfun;
|
|
static int staticfun() {return 1;}
|
|
int (*staticuse2)(void) = staticfun;
|