diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-12-18 20:12:36 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-12-18 20:12:36 +0000 |
commit | ef5d0b5e97ec8e6fa395d377b09aa7755e345b4f (patch) | |
tree | 27916256fdeeb57d10d2f3d6948be5d71a703215 /unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp | |
parent | 76e0736e7fcfeb179779e49c05604464b1ccd704 (diff) |
Notes
Diffstat (limited to 'unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp')
-rw-r--r-- | unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp b/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp index c3591b2d73e1..f0c9cefeb7b0 100644 --- a/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp +++ b/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp @@ -16,8 +16,8 @@ #include "Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h" #include "lldb/Core/Address.h" #include "lldb/Core/AddressRange.h" -#include "lldb/Core/ArchSpec.h" #include "lldb/Symbol/UnwindPlan.h" +#include "lldb/Utility/ArchSpec.h" #include "lldb/Utility/StreamString.h" #include "llvm/Support/TargetSelect.h" @@ -95,7 +95,7 @@ enum i386_regs { std::unique_ptr<x86AssemblyInspectionEngine> Getx86_64Inspector() { - ArchSpec arch("x86_64-apple-macosx", nullptr); + ArchSpec arch("x86_64-apple-macosx"); std::unique_ptr<x86AssemblyInspectionEngine> engine( new x86AssemblyInspectionEngine(arch)); @@ -114,7 +114,7 @@ std::unique_ptr<x86AssemblyInspectionEngine> Getx86_64Inspector() { std::unique_ptr<x86AssemblyInspectionEngine> Geti386Inspector() { - ArchSpec arch("i386-apple-macosx", nullptr); + ArchSpec arch("i386-apple-macosx"); std::unique_ptr<x86AssemblyInspectionEngine> engine( new x86AssemblyInspectionEngine(arch)); |