diff --git a/lib/mom/instruction/not_same_check.rb b/lib/mom/instruction/not_same_check.rb index 60081bb4..655fd4a7 100644 --- a/lib/mom/instruction/not_same_check.rb +++ b/lib/mom/instruction/not_same_check.rb @@ -14,7 +14,7 @@ module Mom end def to_risc(compiler) - Risc::Label.new(self,"nosense") + Risc::Label.new(self,"NotSameCheck") end end end diff --git a/lib/mom/instruction/truth_check.rb b/lib/mom/instruction/truth_check.rb index d167303a..75b2c409 100644 --- a/lib/mom/instruction/truth_check.rb +++ b/lib/mom/instruction/truth_check.rb @@ -20,7 +20,7 @@ module Mom end def to_risc(compiler) - Risc::Label.new(self,"nosense") + Risc::Label.new(self,"TruthCheck") end end