diff options
author | Nilanjana Basu <nilanjana.basu87@gmail.com> | 2019-08-05 14:16:58 +0000 |
---|---|---|
committer | Nilanjana Basu <nilanjana.basu87@gmail.com> | 2019-08-05 14:16:58 +0000 |
commit | da60fc813c225209cadbd137ce17b05e993acd8e (patch) | |
tree | 8e2e0a81310ac0d5fedc831ebf457fa9f1bb7576 /llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp | |
parent | 91a658b094526c2e1c2af6cf56d46c3052992756 (diff) | |
download | bcm5719-llvm-da60fc813c225209cadbd137ce17b05e993acd8e.tar.gz bcm5719-llvm-da60fc813c225209cadbd137ce17b05e993acd8e.zip |
Changing representation of .cv_def_range directives in Codeview debug info assembly format for better readability
llvm-svn: 367867
Diffstat (limited to 'llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp')
-rw-r--r-- | llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp b/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp index 227107c051d..95409fdc330 100644 --- a/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp +++ b/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp @@ -391,7 +391,7 @@ template <> void SymbolRecordImpl<DefRangeRegisterSym>::map(IO &IO) { } template <> void SymbolRecordImpl<DefRangeFramePointerRelSym>::map(IO &IO) { - IO.mapRequired("Offset", Symbol.Offset); + IO.mapRequired("Offset", Symbol.Hdr.Offset); IO.mapRequired("Range", Symbol.Range); IO.mapRequired("Gaps", Symbol.Gaps); } |