make this harder

llvm-svn: 41346
This commit is contained in:
Chris Lattner 2007-08-23 23:49:47 +00:00
parent 0b984995b7
commit afd455c0cf
1 changed files with 10 additions and 0 deletions

View File

@ -10,10 +10,20 @@ int main(void)
_Complex double bar(int);
void test(_Complex double*);
void takecomplex(_Complex double);
void test2(int c) {
_Complex double X;
X = bar(1);
test(&X);
takecomplex(X);
}
_Complex double g1, g2;
void test3() {
g1 = g1 + g2;
g1 = g1 - g2;
g1 = g1 * g2;
g1 = +-~g1;
}