mirror of
https://github.com/intel/llvm.git
synced 2026-02-01 17:07:36 +08:00
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
242 B
C
13 lines
242 B
C
// RUN: clang %s -emit-llvm -o %t
|
|
|
|
typedef struct _zend_ini_entry zend_ini_entry;
|
|
struct _zend_ini_entry {
|
|
void *mh_arg1;
|
|
};
|
|
|
|
char a;
|
|
|
|
const zend_ini_entry ini_entries[] = {
|
|
{ ((char*)&((zend_ini_entry*)0)->mh_arg1 - (char*)(void*)0)},
|
|
};
|