From 6ff85dfbb829b24f630e2fb143323f7f4e92f4a1 Mon Sep 17 00:00:00 2001 From: Han-Chung Wang Date: Tue, 3 Dec 2024 15:35:18 -0800 Subject: [PATCH] [Codegen][NFC] Remove duplicate c++ constants. (#19340) The constant is defined in [IREECodegenAttrs.h](https://github.com/iree-org/iree/blob/f2abfa8b5bdf17ad363cad0af198278c2e700113/compiler/src/iree/compiler/Codegen/Dialect/Codegen/IR/IREECodegenAttrs.h#L41). The revision removes the one in the `.cpp` file. Signed-off-by: hanhanW --- .../compiler/Codegen/Dialect/Codegen/IR/IREECodegenAttrs.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/src/iree/compiler/Codegen/Dialect/Codegen/IR/IREECodegenAttrs.cpp b/compiler/src/iree/compiler/Codegen/Dialect/Codegen/IR/IREECodegenAttrs.cpp index 3def02aee6df..9b88f13a4d22 100644 --- a/compiler/src/iree/compiler/Codegen/Dialect/Codegen/IR/IREECodegenAttrs.cpp +++ b/compiler/src/iree/compiler/Codegen/Dialect/Codegen/IR/IREECodegenAttrs.cpp @@ -22,7 +22,6 @@ #include "iree/compiler/Codegen/Dialect/Codegen/IR/IREECodegenAttrs.cpp.inc" #include "iree/compiler/Codegen/Dialect/Codegen/IR/LoweringConfigEnums.cpp.inc" -static const char kConfigAttrName[] = "lowering_config"; static const char kTranslationInfoAttrName[] = "translation_info"; static const char kCompilationInfoAttrName[] = "compilation_info";