Typo in fix.
PiperOrigin-RevId: 411676127
diff --git a/iree/compiler/Dialect/VM/Target/C/TranslateToCpp.cpp b/iree/compiler/Dialect/VM/Target/C/TranslateToCpp.cpp
index dde902d..027641a 100644
--- a/iree/compiler/Dialect/VM/Target/C/TranslateToCpp.cpp
+++ b/iree/compiler/Dialect/VM/Target/C/TranslateToCpp.cpp
@@ -663,7 +663,7 @@
auto emitNamedAttribute = [&](NamedAttribute attr) -> LogicalResult {
if (llvm::is_contained(exclude, attr.getName().strref()))
return success();
- os << "/* " << attr.geyName() << " */";
+ os << "/* " << attr.getName() << " */";
if (failed(emitAttribute(op.getLoc(), attr.getValue())))
return failure();
return success();