[Mlir-commits] [mlir] [mlir][emitc] Add EmitC index types (PR #93155)

Marius Brehler llvmlistbot at llvm.org
Mon May 27 12:24:08 PDT 2024


================
@@ -0,0 +1,17 @@
+//===- TypeConversions.h - Convert signless types into C/C++ types -------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef MLIR_DIALECT_EMITC_TRANSFORMS_TYPECONVERSIONS_H
+#define MLIR_DIALECT_EMITC_TRANSFORMS_TYPECONVERSIONS_H
+
+namespace mlir {
+class TypeConverter;
+void populateEmitCSizeTypeConversions(TypeConverter &converter);
----------------
marbre wrote:

I assume this should be
```suggestion
void populateEmitCSizeTTypeConversions(TypeConverter &converter);
```

https://github.com/llvm/llvm-project/pull/93155


More information about the Mlir-commits mailing list