diff options
author | Virgile Bello <virgile.bello@gmail.com> | 2014-04-08 14:48:48 +0000 |
---|---|---|
committer | Virgile Bello <virgile.bello@gmail.com> | 2014-04-08 14:48:48 +0000 |
commit | 97a70e4f7e621bbf81f9ab726176903df9659ee6 (patch) | |
tree | 89ba930f9347b9355517df55afef17197af3b034 /lldb/source/Core/ArchSpec.cpp | |
parent | 8250ebdd8a26353058f9916fc9deee0fb2395f2d (diff) | |
download | bcm5719-llvm-97a70e4f7e621bbf81f9ab726176903df9659ee6.tar.gz bcm5719-llvm-97a70e4f7e621bbf81f9ab726176903df9659ee6.zip |
Added i686 architecture (ArchSpec::Core::eCore_x86_32_i686).
llvm-svn: 205770
Diffstat (limited to 'lldb/source/Core/ArchSpec.cpp')
-rw-r--r-- | lldb/source/Core/ArchSpec.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Core/ArchSpec.cpp b/lldb/source/Core/ArchSpec.cpp index f06e1fcba7a..6d708f158ed 100644 --- a/lldb/source/Core/ArchSpec.cpp +++ b/lldb/source/Core/ArchSpec.cpp @@ -103,6 +103,7 @@ static const CoreDefinition g_core_definitions[ArchSpec::kNumCores] = { eByteOrderLittle, 4, 1, 15, llvm::Triple::x86 , ArchSpec::eCore_x86_32_i386 , "i386" }, { eByteOrderLittle, 4, 1, 15, llvm::Triple::x86 , ArchSpec::eCore_x86_32_i486 , "i486" }, { eByteOrderLittle, 4, 1, 15, llvm::Triple::x86 , ArchSpec::eCore_x86_32_i486sx , "i486sx" }, + { eByteOrderLittle, 4, 1, 15, llvm::Triple::x86 , ArchSpec::eCore_x86_32_i686 , "i686" }, { eByteOrderLittle, 8, 1, 15, llvm::Triple::x86_64 , ArchSpec::eCore_x86_64_x86_64 , "x86_64" }, { eByteOrderLittle, 8, 1, 15, llvm::Triple::x86_64 , ArchSpec::eCore_x86_64_x86_64h , "x86_64h" }, |