Fix the implicit module build

This fixes the implicit module build after b1b4b6f366 broke the LLDB
build: https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/42084/
This commit is contained in:
Jonas Devlieghere 2022-03-14 09:22:30 -07:00
parent 5e65e79bac
commit f51d7e4bae
No known key found for this signature in database
GPG Key ID: 49CC0BD90FDEED4D
2 changed files with 6 additions and 0 deletions

View File

@ -11,7 +11,12 @@
//
//===----------------------------------------------------------------------===//
#if defined(BUILTIN) && !defined(TARGET_BUILTIN)
# define TARGET_BUILTIN(ID, TYPE, ATTRS, FEATURE) BUILTIN(ID, TYPE, ATTRS)
#endif
// Use generated BUILTIN definitions
#include "clang/Basic/BuiltinsVEVL.gen.def"
#undef BUILTIN
#undef TARGET_BUILTIN

View File

@ -40,6 +40,7 @@
#ifndef LLVM_CODEGEN_MACHINEPIPELINER_H
#define LLVM_CODEGEN_MACHINEPIPELINER_H
#include "llvm/ADT/SetVector.h"
#include "llvm/CodeGen/MachineDominators.h"
#include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h"
#include "llvm/CodeGen/RegisterClassInfo.h"