diff options
| author | Craig Topper <craig.topper@gmail.com> | 2015-06-08 01:35:40 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2015-06-08 01:35:40 +0000 |
| commit | f7ce7242b77ada34ddff77d0b8f8af1601ceb124 (patch) | |
| tree | 566b7f00c7755fd984f8148a1c8a53c621380eed /llvm | |
| parent | e11d373512391229292b4b6e8a0f0bb4cd5874b7 (diff) | |
| download | bcm5719-llvm-f7ce7242b77ada34ddff77d0b8f8af1601ceb124.tar.gz bcm5719-llvm-f7ce7242b77ada34ddff77d0b8f8af1601ceb124.zip | |
[TableGen] Use the SMLoc header file instead of SourceMgr header file in a couple places. NFC
llvm-svn: 239274
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/TableGen/Record.h | 3 | ||||
| -rw-r--r-- | llvm/include/llvm/TableGen/SetTheory.h | 3 | ||||
| -rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.h | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/llvm/include/llvm/TableGen/Record.h b/llvm/include/llvm/TableGen/Record.h index 91aad57ee71..14ad6360335 100644 --- a/llvm/include/llvm/TableGen/Record.h +++ b/llvm/include/llvm/TableGen/Record.h @@ -17,10 +17,11 @@ #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/FoldingSet.h" +#include "llvm/ADT/PointerIntPair.h" #include "llvm/Support/Casting.h" #include "llvm/Support/DataTypes.h" #include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/SourceMgr.h" +#include "llvm/Support/SMLoc.h" #include "llvm/Support/raw_ostream.h" #include <map> diff --git a/llvm/include/llvm/TableGen/SetTheory.h b/llvm/include/llvm/TableGen/SetTheory.h index 903d3f3a75e..d4e0f53d3ef 100644 --- a/llvm/include/llvm/TableGen/SetTheory.h +++ b/llvm/include/llvm/TableGen/SetTheory.h @@ -47,9 +47,10 @@ #ifndef LLVM_TABLEGEN_SETTHEORY_H #define LLVM_TABLEGEN_SETTHEORY_H +#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SetVector.h" #include "llvm/ADT/StringMap.h" -#include "llvm/Support/SourceMgr.h" +#include "llvm/Support/SMLoc.h" #include <map> #include <vector> diff --git a/llvm/utils/TableGen/CodeGenInstruction.h b/llvm/utils/TableGen/CodeGenInstruction.h index 90ccee35f67..8f01abd5403 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.h +++ b/llvm/utils/TableGen/CodeGenInstruction.h @@ -14,9 +14,10 @@ #ifndef LLVM_UTILS_TABLEGEN_CODEGENINSTRUCTION_H #define LLVM_UTILS_TABLEGEN_CODEGENINSTRUCTION_H +#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" #include "llvm/CodeGen/MachineValueType.h" -#include "llvm/Support/SourceMgr.h" +#include "llvm/Support/SMLoc.h" #include <string> #include <utility> #include <vector> |

