diff options
| author | joerg <joerg@NetBSD.org> | 2019-11-08 14:28:07 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2019-11-08 14:28:07 +0000 |
| commit | 06f32e7ed0e1e34c680117c640fa1a15cb3b1c68 (patch) | |
| tree | a8ccc0d5a51ecf6c13cbe2bc43d4a6b01303d9a1 /external/apache2/llvm/dist/clang/lib/CodeGen/PatternInit.h | |
| parent | 9e0c3fe94901b8278eec6ee629bac2a9937b6a84 (diff) | |
Import 01f3a59fb3e2542fce74c768718f594d0debd0da from the LLVM mono-repo:
clang (without test/, unittests/, www/)
llvm (without test/, unittests/)
Diffstat (limited to 'external/apache2/llvm/dist/clang/lib/CodeGen/PatternInit.h')
| -rw-r--r-- | external/apache2/llvm/dist/clang/lib/CodeGen/PatternInit.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/external/apache2/llvm/dist/clang/lib/CodeGen/PatternInit.h b/external/apache2/llvm/dist/clang/lib/CodeGen/PatternInit.h new file mode 100644 index 00000000000..f117dde9ac6 --- /dev/null +++ b/external/apache2/llvm/dist/clang/lib/CodeGen/PatternInit.h @@ -0,0 +1,27 @@ +//===- PatternInit - Pattern initialization ---------------------*- C++ -*-===// +// +// 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 LLVM_CLANG_LIB_CODEGEN_PATTERNINIT_H +#define LLVM_CLANG_LIB_CODEGEN_PATTERNINIT_H + +namespace llvm { +class Constant; +class Type; +} // namespace llvm + +namespace clang { +namespace CodeGen { + +class CodeGenModule; + +llvm::Constant *initializationPatternFor(CodeGenModule &, llvm::Type *); + +} // end namespace CodeGen +} // end namespace clang + +#endif |
