diff options
| author | Zachary Turner <zturner@google.com> | 2017-03-03 23:52:09 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2017-03-03 23:52:09 +0000 |
| commit | 9739a552c24a63c8a7070c04fdfde438472bb6e7 (patch) | |
| tree | 58d06c58d54482a020f98f2d4778bd83cb465c39 /lldb/source/Expression | |
| parent | 07215cce89479633c1d04722f5c21fbaabad790f (diff) | |
| download | bcm5719-llvm-9739a552c24a63c8a7070c04fdfde438472bb6e7.tar.gz bcm5719-llvm-9739a552c24a63c8a7070c04fdfde438472bb6e7.zip | |
Fix DataExtractor failures.
Some code that doesn't get compiled on Windows had some references
that needed updating, and I missed those.
llvm-svn: 296930
Diffstat (limited to 'lldb/source/Expression')
| -rw-r--r-- | lldb/source/Expression/Materializer.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lldb/source/Expression/Materializer.cpp b/lldb/source/Expression/Materializer.cpp index 1750424110a..8a22daa5acd 100644 --- a/lldb/source/Expression/Materializer.cpp +++ b/lldb/source/Expression/Materializer.cpp @@ -30,19 +30,6 @@ using namespace lldb_private; -static void DumpHexBytes(Stream *s, const void *src, size_t src_len, - uint32_t bytes_per_line, lldb::addr_t base_addr) { - DataExtractor data(src, src_len, lldb::eByteOrderLittle, 4); - DumpDataExtractor(data, s, - 0, // Offset into "src" - lldb::eFormatBytes, // Dump as hex bytes - 1, // Size of each item is 1 for single bytes - src_len, // Number of bytes - bytes_per_line, // Num bytes per line - base_addr, // Base address - 0, 0); // Bitfield info -} - uint32_t Materializer::AddStructMember(Entity &entity) { uint32_t size = entity.GetSize(); uint32_t alignment = entity.GetAlignment(); |

