summaryrefslogtreecommitdiff
path: root/decuda_to_ptxplus/decudaInstList.cc
diff options
context:
space:
mode:
authorJimmy Kwa <[email protected]>2011-01-04 13:19:03 -0800
committerJimmy Kwa <[email protected]>2011-01-04 13:19:03 -0800
commitf18e4327b836ac66843a1c21cb429cc71bea9714 (patch)
treeaf44efd5b2a389d8f8ac4396bf909c431861cd3b /decuda_to_ptxplus/decudaInstList.cc
parent79edba0bcd839f6cbbb66ca5423b323e3f526f88 (diff)
fixed several issues with f64 support in decuda_to_ptxplus.
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 8316]
Diffstat (limited to 'decuda_to_ptxplus/decudaInstList.cc')
-rw-r--r--decuda_to_ptxplus/decudaInstList.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/decuda_to_ptxplus/decudaInstList.cc b/decuda_to_ptxplus/decudaInstList.cc
index 9ac6f43..7b92155 100644
--- a/decuda_to_ptxplus/decudaInstList.cc
+++ b/decuda_to_ptxplus/decudaInstList.cc
@@ -303,7 +303,7 @@ void decudaInstList::addRegister(std::string reg, bool lo)
{
const char* modString = currentPiece->stringText;
- if( strcmp(modString, ".b64")==0 )
+ if( (strcmp(modString, ".b64")==0) || (strcmp(modString, ".f64")==0) )
vectorFlag = 64;
if( strcmp(modString, ".b128")==0 )
vectorFlag = 128;