1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

[NFC] Move BitcodeCommon.h from Bitstream to Bitcode

This commit is contained in:
Guillaume Chatelet 2020-07-27 20:49:01 +00:00
parent 1e47ef76de
commit 041ab5526b
3 changed files with 5 additions and 5 deletions

View File

@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_BITSTREAM_BITCODECOMMON_H
#define LLVM_BITSTREAM_BITCODECOMMON_H
#ifndef LLVM_BITCODE_BITCODECOMMON_H
#define LLVM_BITCODE_BITCODECOMMON_H
#include "llvm/ADT/Bitfields.h"
@ -27,4 +27,4 @@ struct AllocaPackedValues {
} // namespace llvm
#endif // LLVM_BITSTREAM_BITCODECOMMON_H
#endif // LLVM_BITCODE_BITCODECOMMON_H

View File

@ -20,8 +20,8 @@
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/Triple.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Bitcode/BitcodeCommon.h"
#include "llvm/Bitcode/LLVMBitCodes.h"
#include "llvm/Bitstream/BitcodeCommon.h"
#include "llvm/Bitstream/BitstreamReader.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/IR/Argument.h"

View File

@ -24,10 +24,10 @@
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/Triple.h"
#include "llvm/Bitcode/BitcodeCommon.h"
#include "llvm/Bitcode/BitcodeReader.h"
#include "llvm/Bitcode/LLVMBitCodes.h"
#include "llvm/Bitstream/BitCodes.h"
#include "llvm/Bitstream/BitcodeCommon.h"
#include "llvm/Bitstream/BitstreamWriter.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/IR/Attributes.h"