Add missing include to fix the modules build

This commit is contained in:
Adrian Prantl 2022-10-14 08:51:34 -07:00
parent c11def8724
commit 9caebcf3a8
2 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,8 @@
#define LLVM_IR_MODREF_H
#include "llvm/ADT/BitmaskEnum.h"
#include "llvm/ADT/Sequence.h"
#include "llvm/Support/raw_ostream.h"
namespace llvm {

View File

@ -15,6 +15,8 @@
#ifndef LLVM_SUPPORT_SAVEANDRESTORE_H
#define LLVM_SUPPORT_SAVEANDRESTORE_H
#include <utility>
namespace llvm {
/// A utility class that uses RAII to save and restore the value of a variable.