[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / mlir / include / mlir-c / Dialect / Vector.h
blob6256c82d172cef7073e2444989ca3b152aad508e
1 //===-- mlir-c/Dialect/Vector.h - C API for Vector dialect --------*- C -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM
4 // Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This header declares the C interface for registering and accessing the
11 // Vector dialect. A dialect should be registered with a context to make it
12 // available to users of the context. These users must load the dialect
13 // before using any of its attributes, operations or types. Parser and pass
14 // manager can load registered dialects automatically.
16 //===----------------------------------------------------------------------===//
18 #ifndef MLIR_C_DIALECT_VECTOR_H
19 #define MLIR_C_DIALECT_VECTOR_H
21 #include "mlir-c/IR.h"
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
27 MLIR_DECLARE_CAPI_DIALECT_REGISTRATION(Vector, vector);
29 #ifdef __cplusplus
31 #endif
33 #endif // MLIR_C_DIALECT_VECTOR_H