Rename "insts" directory to "instructions"

This commit is contained in:
ReinUsesLisp
2018-11-16 04:15:26 -03:00
parent f5944d61a6
commit f259019494
15 changed files with 14 additions and 14 deletions

17
src/instructions/misc.cpp Normal file
View File

@@ -0,0 +1,17 @@
/* This file is part of the sirit project.
* Copyright (c) 2018 ReinUsesLisp
* This software may be used and distributed according to the terms of the GNU
* Lesser General Public License version 3 or any later version.
*/
#include "op.h"
#include "sirit/sirit.h"
#include <cassert>
namespace Sirit {
Id Module::OpUndef(Id result_type) {
return AddCode(std::make_unique<Op>(spv::Op::OpUndef, bound++, result_type));
}
} // namespace Sirit