Basic codegen test for conditional with void*.

llvm-svn: 46940
This commit is contained in:
Eli Friedman 2008-02-10 23:18:23 +00:00
parent fadc8462be
commit de4496bb9e

View File

@ -19,3 +19,9 @@ void test4() {
int i; short j;
float* k = 1 ? &i : &j;
}
void test5() {
const int* cip;
void* vp;
cip = 0 ? vp : cip;
}