[Lldb-commits] [lldb] r281507 - Use Intel CPU flags to determine target supported features.
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 14 10:46:13 PDT 2016
On Wed, Sep 14, 2016 at 10:36 AM Valentina Giusti via lldb-commits <
lldb-commits at lists.llvm.org> wrote:
>
> ==============================================================================
> ---
> lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
> (original)
> +++
> lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
> Wed Sep 14 12:27:48 2016
> @@ -77,7 +77,8 @@ protected:
>
> private:
> // Private member types.
> - enum FPRType { eFPRTypeNotValid = 0, eFPRTypeFXSAVE, eFPRTypeXSAVE };
> + enum XStateType { eXStateTypeNotValid = 0, eXStateTypeFXSAVE,
> eXStateTypeXSAVE };
> + enum RegSet { gpr, fpu, avx, mpx };
>
This still isn't an enum class. You need to write:
enum class RegSet { gpr, fpu, avx, mpx };
Can you make this change and submit it as a followup please?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160914/0fdbccec/attachment.html>
More information about the lldb-commits
mailing list