From 83d957377e6f34d0b42d5a005bdb738f0661431f Mon Sep 17 00:00:00 2001 From: Torsten Ruger Date: Wed, 14 Mar 2018 17:37:27 +0530 Subject: [PATCH] more precise --- lib/mom/instruction/not_same_check.rb | 2 +- lib/mom/instruction/truth_check.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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