mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 08:51:43 +00:00
Fix implicit include dependencies on SmallVector.h.
Both `AArch64TargetParser.h` and `ARMTargetParser.h` refer to `SmallVectorImpl` without directly including the header that defines it, which works fine until nothing else happens to include it anyway.
This commit is contained in:
parent
83a117d0a9
commit
24333be966
@ -14,6 +14,7 @@
|
||||
#ifndef LLVM_SUPPORT_AARCH64TARGETPARSERCOMMON_H
|
||||
#define LLVM_SUPPORT_AARCH64TARGETPARSERCOMMON_H
|
||||
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Support/ARMTargetParser.h"
|
||||
#include <vector>
|
||||
|
@ -14,6 +14,7 @@
|
||||
#ifndef LLVM_SUPPORT_ARMTARGETPARSER_H
|
||||
#define LLVM_SUPPORT_ARMTARGETPARSER_H
|
||||
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Support/ARMBuildAttributes.h"
|
||||
#include <vector>
|
||||
|
Loading…
Reference in New Issue
Block a user