diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-20 19:27:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-20 19:27:12 +0000 |
commit | 105088af03927281b213024fb90f382c98583acd (patch) | |
tree | 13c0eeb7b45970106fc3b314214834f93ef9bfb1 /test | |
parent | fc592231941dadb60cc419613adbd41a0b48b321 (diff) | |
download | external_llvm-105088af03927281b213024fb90f382c98583acd.zip external_llvm-105088af03927281b213024fb90f382c98583acd.tar.gz external_llvm-105088af03927281b213024fb90f382c98583acd.tar.bz2 |
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')
-rw-r--r-- | test/CFrontend/2003-11-20-ComplexDivision.c | 5 |
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 0000000..3204271 --- /dev/null +++ b/test/CFrontend/2003-11-20-ComplexDivision.c @@ -0,0 +1,5 @@ +int test() { + __complex__ double C; + double D; + C / D; +} |