Changes in src/CodeGen/CodeGenerator.cc [665f432:de8d7fb1]
- File:
-
- 1 edited
-
src/CodeGen/CodeGenerator.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
r665f432 rde8d7fb1 786 786 787 787 void CodeGenerator::postvisit( AsmExpr * asmExpr ) { 788 if ( !asmExpr->inout.empty() ) {788 if ( asmExpr->get_inout() ) { 789 789 output << "[ "; 790 output << asmExpr->inout;790 asmExpr->get_inout()->accept( *visitor ); 791 791 output << " ] "; 792 792 } // if 793 asmExpr-> constraint->accept( *visitor );793 asmExpr->get_constraint()->accept( *visitor ); 794 794 output << " ( "; 795 asmExpr-> operand->accept( *visitor );795 asmExpr->get_operand()->accept( *visitor ); 796 796 output << " )"; 797 797 }
Note:
See TracChangeset
for help on using the changeset viewer.