Add Op* prefix to instructions that have to be emited

This commit is contained in:
ReinUsesLisp
2018-10-31 21:22:00 -03:00
parent ba3a3a74d7
commit a08aeec982
15 changed files with 149 additions and 144 deletions

View File

@@ -10,7 +10,7 @@
namespace Sirit {
Ref Module::Undef(Ref result_type) {
Ref Module::OpUndef(Ref result_type) {
return AddCode(new Op(spv::Op::OpUndef, bound++, result_type));
}