diff options
-rw-r--r-- | test/CodeGen/builtins.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/CodeGen/builtins.c b/test/CodeGen/builtins.c index 2355fb4324..40f77249f9 100644 --- a/test/CodeGen/builtins.c +++ b/test/CodeGen/builtins.c @@ -39,9 +39,10 @@ int main() { Q(inff, ()); Q(infl, ()); + P(fpclassify, (0, 1, 2, 3, 4, 1.0)); + P(fpclassify, (0, 1, 2, 3, 4, 1.0f)); + P(fpclassify, (0, 1, 2, 3, 4, 1.0l)); // FIXME: - // XXX note funny semantics for the (last) argument - // P(fpclassify, (FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, 1.0)); // P(isinf_sign, (1.0)); Q(nan, ("")); |