diff options
| author | Reid Kleckner <rnk@google.com> | 2019-10-19 00:48:11 +0000 |
|---|---|---|
| committer | Reid Kleckner <rnk@google.com> | 2019-10-19 00:48:11 +0000 |
| commit | 90c64a3456b972432a21ef043b205c18a91e011b (patch) | |
| tree | 7a6b8ad8a0ee2135438f036f88ebb04d96192454 /llvm/tools/llvm-exegesis | |
| parent | f6a46304174e7a31f5f18d18a5a3a24eaddf35f0 (diff) | |
| download | bcm5719-llvm-90c64a3456b972432a21ef043b205c18a91e011b.tar.gz bcm5719-llvm-90c64a3456b972432a21ef043b205c18a91e011b.zip | |
Move endian constant from Host.h to SwapByteOrder.h, prune include
Works on this dependency chain:
ArrayRef.h ->
Hashing.h -> --CUT--
Host.h ->
StringMap.h / StringRef.h
ArrayRef is very popular, but Host.h is rarely needed. Move the
IsBigEndianHost constant to SwapByteOrder.h. Clients of that header are
more likely to need it.
llvm-svn: 375316
Diffstat (limited to 'llvm/tools/llvm-exegesis')
| -rw-r--r-- | llvm/tools/llvm-exegesis/lib/RegisterValue.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/RegisterValue.cpp b/llvm/tools/llvm-exegesis/lib/RegisterValue.cpp index e83b73eaafc..f881aa6d538 100644 --- a/llvm/tools/llvm-exegesis/lib/RegisterValue.cpp +++ b/llvm/tools/llvm-exegesis/lib/RegisterValue.cpp @@ -8,6 +8,7 @@ #include "RegisterValue.h" #include "llvm/ADT/APFloat.h" +#include "llvm/ADT/StringRef.h" namespace llvm { namespace exegesis { |

