diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-02-07 23:02:00 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-02-07 23:02:00 +0000 |
commit | 1d43552a4027393f2a58812cf76b274f37f13375 (patch) | |
tree | a92d52b61adfe7595e11d90b84ade60120b14bcc /llvm/lib/MC/ConstantPools.cpp | |
parent | ee513ed84c04caa84f87b806ce54de6a577d1cea (diff) | |
download | bcm5719-llvm-1d43552a4027393f2a58812cf76b274f37f13375.tar.gz bcm5719-llvm-1d43552a4027393f2a58812cf76b274f37f13375.zip |
[MC] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 294369
Diffstat (limited to 'llvm/lib/MC/ConstantPools.cpp')
-rw-r--r-- | llvm/lib/MC/ConstantPools.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/lib/MC/ConstantPools.cpp b/llvm/lib/MC/ConstantPools.cpp index 9608c2c656b..8c94e278099 100644 --- a/llvm/lib/MC/ConstantPools.cpp +++ b/llvm/lib/MC/ConstantPools.cpp @@ -1,4 +1,4 @@ -//===- ConstantPools.cpp - ConstantPool class --*- C++ -*---------===// +//===- ConstantPools.cpp - ConstantPool class -----------------------------===// // // The LLVM Compiler Infrastructure // @@ -10,13 +10,16 @@ // This file implements the ConstantPool and AssemblerConstantPools classes. // //===----------------------------------------------------------------------===// -#include "llvm/ADT/MapVector.h" + #include "llvm/MC/ConstantPools.h" #include "llvm/MC/MCContext.h" +#include "llvm/MC/MCDirectives.h" #include "llvm/MC/MCExpr.h" #include "llvm/MC/MCStreamer.h" +#include "llvm/Support/Casting.h" using namespace llvm; + // // ConstantPool implementation // |