merged with master

This commit is contained in:
Evghenii
2014-02-21 08:25:28 +01:00
46 changed files with 1127 additions and 197 deletions

5
ispc.h
View File

@@ -282,6 +282,8 @@ public:
bool hasTranscendentals() const {return m_hasTranscendentals;}
bool hasTrigonometry() const {return m_hasTrigonometry;}
bool hasRsqrtd() const {return m_hasRsqrtd;}
bool hasRcpd() const {return m_hasRcpd;}
@@ -385,6 +387,9 @@ private:
sqrt, which we assume that all of them handle). */
bool m_hasTranscendentals;
/** Indicates whether the target has ISA support for trigonometry */
bool m_hasTrigonometry;
/** Indicates whether there is an ISA double precision rsqrt. */
bool m_hasRsqrtd;