From 29232467c895b89edc262db9802e49b68096c74b Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Mon, 6 Dec 2021 13:31:50 -0800 Subject: [PATCH] Update CodeGen_C.cpp --- src/CodeGen_C.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CodeGen_C.cpp b/src/CodeGen_C.cpp index e7a4df3e9d44..8e9fe29af02f 100644 --- a/src/CodeGen_C.cpp +++ b/src/CodeGen_C.cpp @@ -2470,7 +2470,7 @@ void CodeGen_C::visit(const Call *op) { } else if (op->is_intrinsic(Call::define_typed_struct)) { // Emit a declaration like: // - // struct {const int f_0, const char f_1, const int f_2} foo; + // struct foo {const int f_0, const char f_1, const int f_2}; // // rhs is set to a nullptr of the new type.