summaryrefslogtreecommitdiff
path: root/include/llvm/DebugInfo/DWARFFormValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/DebugInfo/DWARFFormValue.h')
-rw-r--r--include/llvm/DebugInfo/DWARFFormValue.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/llvm/DebugInfo/DWARFFormValue.h b/include/llvm/DebugInfo/DWARFFormValue.h
index c88e42a9c9..c8d600839a 100644
--- a/include/llvm/DebugInfo/DWARFFormValue.h
+++ b/include/llvm/DebugInfo/DWARFFormValue.h
@@ -18,9 +18,8 @@ class DWARFUnit;
class raw_ostream;
class DWARFFormValue {
-public:
struct ValueType {
- ValueType() : data(NULL), IsDWOIndex(false) {
+ ValueType() : data(NULL) {
uval = 0;
}
@@ -30,10 +29,8 @@ public:
const char* cstr;
};
const uint8_t* data;
- bool IsDWOIndex;
};
-private:
uint16_t Form; // Form for this value.
ValueType Value; // Contains all data for the form.