blob: 172de8c0e1920ee73fca1eef6f4980aee3af315b [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3int test() {
4 __complex__ double C;
5 double D;
6 C / D;
7}