summaryrefslogtreecommitdiff
path: root/test/CFrontend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-20 19:27:12 +0000
committerChris Lattner <sabre@nondot.org>2003-11-20 19:27:12 +0000
commit105088af03927281b213024fb90f382c98583acd (patch)
tree13c0eeb7b45970106fc3b314214834f93ef9bfb1 /test/CFrontend
parentfc592231941dadb60cc419613adbd41a0b48b321 (diff)
downloadllvm-105088af03927281b213024fb90f382c98583acd.tar.gz
llvm-105088af03927281b213024fb90f382c98583acd.tar.bz2
llvm-105088af03927281b213024fb90f382c98583acd.tar.xz
New testcase for PR132
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10116 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CFrontend')
-rw-r--r--test/CFrontend/2003-11-20-ComplexDivision.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/CFrontend/2003-11-20-ComplexDivision.c b/test/CFrontend/2003-11-20-ComplexDivision.c
new file mode 100644
index 0000000000..3204271e4e
--- /dev/null
+++ b/test/CFrontend/2003-11-20-ComplexDivision.c
@@ -0,0 +1,5 @@
+int test() {
+ __complex__ double C;
+ double D;
+ C / D;
+}