1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

LLLexer.h - reduce SourceMgr.h include to SMLoc.h. NFC

We only need the SMLoc definition and the SourceMgr forward declaration.
This commit is contained in:
Simon Pilgrim 2020-04-24 12:37:25 +01:00
parent 177549095d
commit d0bc3adf33

View File

@ -16,12 +16,13 @@
#include "LLToken.h"
#include "llvm/ADT/APFloat.h"
#include "llvm/ADT/APSInt.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/SMLoc.h"
#include <string>
namespace llvm {
class Type;
class SMDiagnostic;
class SourceMgr;
class LLVMContext;
class LLLexer {