new testcase for PR1027

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32063 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-12-01 06:34:56 +00:00
parent 7da3bde866
commit 772aa15a4d

View File

@ -0,0 +1,27 @@
// RUN: %llvmgxx %s -emit-llvm -S -o -
// PR1027
struct sys_var {
unsigned name_length;
bool no_support_one_shot;
sys_var() {}
};
struct sys_var_thd : public sys_var {
};
extern sys_var_thd sys_auto_is_null;
sys_var *getsys_variables() {
return &sys_auto_is_null;
}
sys_var *sys_variables = &sys_auto_is_null;