Changes in src/AST/Expr.hpp [665f432:e67991f]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.hpp
r665f432 re67991f 556 556 class AsmExpr final : public Expr { 557 557 public: 558 std::stringinout;558 ptr<Expr> inout; 559 559 ptr<Expr> constraint; 560 560 ptr<Expr> operand; 561 561 562 AsmExpr( const CodeLocation & loc, const std::string &io, const Expr * con, const Expr * op )562 AsmExpr( const CodeLocation & loc, const Expr * io, const Expr * con, const Expr * op ) 563 563 : Expr( loc ), inout( io ), constraint( con ), operand( op ) {} 564 564
Note:
See TracChangeset
for help on using the changeset viewer.