summaryrefslogtreecommitdiffhomepage
path: root/asm/intel64/int.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-15 13:55:18 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-15 13:55:18 +0100
commitd07c5bc14edbe071ee7b4f47f174780e95e451aa (patch)
tree889ed88ea6907119b75b7b76f616a604c9857e3d /asm/intel64/int.cpp
parent9e7f4c9d43b310c280cd6432cd4150411f4b914e (diff)
Simplify Asm construction
Diffstat (limited to 'asm/intel64/int.cpp')
-rw-r--r--asm/intel64/int.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/intel64/int.cpp b/asm/intel64/int.cpp
index de6c73b..dbc6ae7 100644
--- a/asm/intel64/int.cpp
+++ b/asm/intel64/int.cpp
@@ -2,7 +2,7 @@
#include <asm/assembler.h>
-Op_int::Op_int(Asm::Args& args)
+Op_int::Op_int(const Asm::Args& args)
{
// At this point, the registration already ensured the number and types of args
@@ -21,7 +21,7 @@ Op_int::Op_int(Asm::Args& args)
namespace {
-bool registered { registerOp(mangleName<Asm::Args::Immediate8>("int"), [](Asm::Args& args) -> std::shared_ptr<Op>{
+bool registered { registerOp(mangleName<Asm::Args::Immediate8>("int"), [](const Asm::Args& args) -> std::shared_ptr<Op>{
return std::make_shared<Op_int>(args);
}) };