checkpoint

This commit is contained in:
Evghenii
2013-10-29 13:36:31 +01:00
parent b2baa35c3d
commit ac700d4860
5 changed files with 85 additions and 3 deletions

2
ispc.h
View File

@@ -244,6 +244,7 @@ public:
bool isValid() const {return m_valid;}
ISA getISA() const {return m_isa;}
bool isPTX() const {return m_isPTX;}
std::string getArch() const {return m_arch;}
@@ -298,6 +299,7 @@ private:
/** Instruction set being compiled to. */
ISA m_isa;
bool m_isPTX;
/** Target system architecture. (e.g. "x86-64", "x86"). */
std::string m_arch;