diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-02-08 22:23:19 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-02-08 22:23:19 +0000 |
commit | 3d8b0ebb68e50c7495ed82349ea0b08593fc0314 (patch) | |
tree | 33489a3c436be52eef0b7ccf39e2060e50bfa1f0 /llvm/lib/MC/MCLabel.cpp | |
parent | 41e7e34c498bf777182cfae8490a077c97b9db60 (diff) | |
download | bcm5719-llvm-3d8b0ebb68e50c7495ed82349ea0b08593fc0314.tar.gz bcm5719-llvm-3d8b0ebb68e50c7495ed82349ea0b08593fc0314.zip |
[MC] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 294526
Diffstat (limited to 'llvm/lib/MC/MCLabel.cpp')
-rw-r--r-- | llvm/lib/MC/MCLabel.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCLabel.cpp b/llvm/lib/MC/MCLabel.cpp index d973fc93b98..db25a46fce1 100644 --- a/llvm/lib/MC/MCLabel.cpp +++ b/llvm/lib/MC/MCLabel.cpp @@ -1,4 +1,4 @@ -//===- lib/MC/MCLabel.cpp - MCLabel implementation ----------------------===// +//===- lib/MC/MCLabel.cpp - MCLabel implementation ------------------------===// // // The LLVM Compiler Infrastructure // @@ -8,8 +8,10 @@ //===----------------------------------------------------------------------===// #include "llvm/MC/MCLabel.h" +#include "llvm/Support/Compiler.h" #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" + using namespace llvm; void MCLabel::print(raw_ostream &OS) const { |