core_interface.cpp 549 B

123456789101112131415
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include "toolchain/sem_ir/core_interface.h" // IWYU pragma: keep
  5. #include "toolchain/sem_ir/inst_kind.h"
  6. namespace Carbon::SemIR {
  7. CARBON_DEFINE_ENUM_CLASS_NAMES(CoreInterface) {
  8. #define CARBON_SEM_IR_CORE_INTERFACE_KIND(Name) \
  9. CARBON_ENUM_CLASS_NAME_STRING(Name)
  10. #include "toolchain/sem_ir/core_interface_kind.def"
  11. };
  12. } // namespace Carbon::SemIR