From: Chris Lattner Date: Thu, 20 Nov 2003 19:27:12 +0000 (+0000) Subject: New testcase for PR132 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=105088af03927281b213024fb90f382c98583acd;p=oota-llvm.git New testcase for PR132 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10116 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2003-11-20-ComplexDivision.c b/test/CFrontend/2003-11-20-ComplexDivision.c new file mode 100644 index 00000000000..3204271e4ee --- /dev/null +++ b/test/CFrontend/2003-11-20-ComplexDivision.c @@ -0,0 +1,5 @@ +int test() { + __complex__ double C; + double D; + C / D; +}