aboutsummaryrefslogtreecommitdiff
path: root/tests/libcxx/include/cfloat
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-01-19 10:14:11 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-01-19 10:14:11 -0800
commit5399641d167285d7d7eb641a6911b4bac812ff40 (patch)
tree0650648615d869cb7f993bdec19d9c330089fab2 /tests/libcxx/include/cfloat
parent17cde1d9d7685eb2b33e6964bd87145f518d62f4 (diff)
clean up libcxx test
Diffstat (limited to 'tests/libcxx/include/cfloat')
-rw-r--r--tests/libcxx/include/cfloat76
1 files changed, 0 insertions, 76 deletions
diff --git a/tests/libcxx/include/cfloat b/tests/libcxx/include/cfloat
deleted file mode 100644
index f0079c23..00000000
--- a/tests/libcxx/include/cfloat
+++ /dev/null
@@ -1,76 +0,0 @@
-// -*- C++ -*-
-//===--------------------------- cfloat -----------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef _LIBCPP_CFLOAT
-#define _LIBCPP_CFLOAT
-
-/*
- cfloat synopsis
-
-Macros:
-
- FLT_ROUNDS
- FLT_EVAL_METHOD // C99
- FLT_RADIX
-
- FLT_MANT_DIG
- DBL_MANT_DIG
- LDBL_MANT_DIG
-
- DECIMAL_DIG // C99
-
- FLT_DIG
- DBL_DIG
- LDBL_DIG
-
- FLT_MIN_EXP
- DBL_MIN_EXP
- LDBL_MIN_EXP
-
- FLT_MIN_10_EXP
- DBL_MIN_10_EXP
- LDBL_MIN_10_EXP
-
- FLT_MAX_EXP
- DBL_MAX_EXP
- LDBL_MAX_EXP
-
- FLT_MAX_10_EXP
- DBL_MAX_10_EXP
- LDBL_MAX_10_EXP
-
- FLT_MAX
- DBL_MAX
- LDBL_MAX
-
- FLT_EPSILON
- DBL_EPSILON
- LDBL_EPSILON
-
- FLT_MIN
- DBL_MIN
- LDBL_MIN
-
-*/
-
-#include <__config>
-#include <float.h>
-
-#pragma GCC system_header
-
-#ifndef FLT_EVAL_METHOD
-#define FLT_EVAL_METHOD __FLT_EVAL_METHOD__
-#endif
-
-#ifndef DECIMAL_DIG
-#define DECIMAL_DIG __DECIMAL_DIG__
-#endif
-
-#endif // _LIBCPP_CFLOAT