Open GoogleCodeExporter opened 9 years ago
I don't have time to learn all the details so I found the type that was
'invalid' - ir::PTXInstruction::Const and added it to the choice list.
Brute force worked.
Why Const was not included?
Thanks.
Index: PTXToLLVMTranslator.cpp
===================================================================
--- PTXToLLVMTranslator.cpp (revision 2235)
+++ PTXToLLVMTranslator.cpp (working copy)
@@ -2665,6 +2665,7 @@
{
case ir::PTXInstruction::Shared: /* fall through */
case ir::PTXInstruction::Local:
+ case ir::PTXInstruction::Const:
{
assertM( i.addressSpace != ir::PTXInstruction::Local
|| i.a.addressMode != ir::PTXOperand::Address
Original comment by volyrkr
on 5 Jun 2013 at 2:18
Original issue reported on code.google.com by
volyrkr
on 5 Jun 2013 at 12:20