forked from OSchip/llvm-project
MCTargetOptionsCommandFlags.h - remove unnecessary includes. NFC.
Replace with MCTargetOptions forward declaration and move includes down to MCTargetOptionsCommandFlags.cpp
This commit is contained in:
parent
64ba6ee160
commit
f3b20c2ae7
|
@ -15,11 +15,12 @@
|
|||
#define LLVM_MC_MCTARGETOPTIONSCOMMANDFLAGS_H
|
||||
|
||||
#include "llvm/ADT/Optional.h"
|
||||
#include "llvm/MC/MCTargetOptions.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include <string>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class MCTargetOptions;
|
||||
|
||||
namespace mc {
|
||||
|
||||
bool getRelaxAll();
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/MC/MCTargetOptionsCommandFlags.h"
|
||||
#include "llvm/MC/MCTargetOptions.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
|
|
Loading…
Reference in New Issue