LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
oper.hh
Go to the documentation of this file.
1 
6 #ifndef ASSEM_OPER_HH
7 # define ASSEM_OPER_HH
8 
9 # include <assem/instr.hh>
10 
11 namespace assem
12 {
13 
14  class Oper : public Instr
15  {
16  public:
17  Oper(const std::string& assem,
18  const temp::temp_list_type& used_temps,
19  const temp::temp_list_type& defd_temps,
20  const temp::label_list_type& jump_labels = temp::label_list_type());
21 
22  virtual std::ostream& dump(std::ostream& ostr) const override;
23  }; // class Oper
24 
25 } // namespace assem
26 
27 # include <assem/oper.hxx>
28 
29 #endif // !ASSEM_OPER_HH