Remove Op prefix for Name

This commit is contained in:
ReinUsesLisp 2018-10-31 22:16:29 -03:00
parent a08aeec982
commit b8188f5ec4
2 changed files with 2 additions and 2 deletions

View file

@ -192,7 +192,7 @@ class Module {
/// Assign a name string to a reference.
/// @return target
Ref OpName(Ref target, const std::string& name);
Ref Name(Ref target, const std::string& name);
// Memory

View file

@ -9,7 +9,7 @@
namespace Sirit {
Ref Module::OpName(Ref target, const std::string& name) {
Ref Module::Name(Ref target, const std::string& name) {
auto op{new Op(spv::Op::OpName)};
op->Add(target);
op->Add(name);