aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2010-09-16 16:07:21 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2010-09-16 16:07:21 +0000
commit4c273fd84b6233fba1f2ce9d34affa5c349d0911 (patch)
tree7bea83c712bd847239f51aaa52650dcc5d849977 /source
parent872aee15367f49a091d2d327f123cfba3eaacc48 (diff)
downloadlldb-4c273fd84b6233fba1f2ce9d34affa5c349d0911.tar.gz
Unbreak build, you can't take a pointer from a "register" variable. Most compilers ignore this keyword anyways.
Also remove a typedef that typedefs nothing. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@114083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source')
-rw-r--r--source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp b/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
index 5ad9273d1..3f77b0b71 100644
--- a/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
+++ b/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
@@ -119,7 +119,7 @@ DWARFDebugInfoEntry::FastExtract
if (abbrCode)
{
- register uint32_t offset = *offset_ptr;
+ uint32_t offset = *offset_ptr;
m_abbrevDecl = cu->GetAbbreviations()->GetAbbreviationDeclaration(abbrCode);