blob: 2962b74553447d153e65c7aa1449df945f9909a2 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc %s -S -o -
2
3#include <math.h>
4#define I 1.0iF
5
6double __complex test(double X) { return ~-(X*I); }
7
8_Bool EQ(double __complex A, double __complex B) { return A == B; }
9_Bool NE(double __complex A, double __complex B) { return A != B; }