InstructionInstance::InstructionInstance(const Instruction &Instr)
: Instr(Instr), VariableValues(Instr.Variables.size()) {}
-InstructionInstance::InstructionInstance(InstructionInstance &&) noexcept =
+InstructionInstance::InstructionInstance(InstructionInstance &&) =
default;
InstructionInstance &InstructionInstance::
-operator=(InstructionInstance &&) noexcept = default;
+operator=(InstructionInstance &&) = default;
unsigned InstructionInstance::getOpcode() const {
return Instr.Description->getOpcode();
SnippetPrototype::SnippetPrototype(SnippetPrototype &&) = default;
-SnippetPrototype &SnippetPrototype::operator=(SnippetPrototype &&) = default;
+SnippetPrototype &SnippetPrototype::
+operator=(SnippetPrototype &&) = default;
bool RegisterOperandAssignment::
operator==(const RegisterOperandAssignment &Other) const {
InstructionInstance &operator=(const InstructionInstance &) = delete;
// Moving is OK.
- InstructionInstance(InstructionInstance &&) noexcept;
- InstructionInstance &operator=(InstructionInstance &&) noexcept;
+ InstructionInstance(InstructionInstance &&);
+ InstructionInstance &operator=(InstructionInstance &&);
unsigned getOpcode() const;
llvm::MCOperand &getValueFor(const Variable &Var);
SnippetPrototype &operator=(const SnippetPrototype &) = delete;
// Moving is OK.
- SnippetPrototype(SnippetPrototype &&) noexcept;
- SnippetPrototype &operator=(SnippetPrototype &&) noexcept;
+ SnippetPrototype(SnippetPrototype &&);
+ SnippetPrototype &operator=(SnippetPrototype &&);
std::string Explanation;
std::vector<InstructionInstance> Snippet;