diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-02-07 17:44:33 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-02-07 17:44:33 +0000 |
| commit | 425260bd337142648931f8fb422ccea113fb81ba (patch) | |
| tree | 646a507d772460f295b9681917c2520039e0ecd5 | |
| parent | 75852f56ae72adb95c7244d5244b2c9c348d1c66 (diff) | |
| download | bcm5719-llvm-425260bd337142648931f8fb422ccea113fb81ba.tar.gz bcm5719-llvm-425260bd337142648931f8fb422ccea113fb81ba.zip | |
Namespace patch for linux builds from Jai Menon.
llvm-svn: 125016
| -rw-r--r-- | lldb/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.cpp b/lldb/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.cpp index af6b7885c84..27ca5b8690e 100644 --- a/lldb/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.cpp +++ b/lldb/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.cpp @@ -14,6 +14,7 @@ #include "lldb/Core/DataExtractor.h" #include "lldb/Core/Scalar.h" #include "lldb/Target/Thread.h" +#include "lldb/Host/Endian.h" #include "ProcessLinux.h" #include "ProcessMonitor.h" @@ -500,7 +501,7 @@ RegisterContextLinux_x86_64::ReadRegisterBytes(uint32_t reg, } if (status) - data.SetData(buf + GetRegOffset(reg), GetRegSize(reg), endian::InlHostByteOrder()); + data.SetData(buf + GetRegOffset(reg), GetRegSize(reg), lldb::endian::InlHostByteOrder()); return status; } |

