diff options
author | Eric Christopher <echristo@gmail.com> | 2019-08-02 19:10:37 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2019-08-02 19:10:37 +0000 |
commit | 5fb56b1966550857bd8ea3261ee69f0160355f15 (patch) | |
tree | bc75893085685c5910c87dd5cf50f600882622e7 /llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp | |
parent | 98264863254d29deeb45bcbbdb298f246308d673 (diff) | |
download | bcm5719-llvm-5fb56b1966550857bd8ea3261ee69f0160355f15.tar.gz bcm5719-llvm-5fb56b1966550857bd8ea3261ee69f0160355f15.zip |
Temporarily Revert "Changing representation of cv_def_range directives in Codeview debug info assembly format for better readability"
This is breaking bots and the author asked me to revert.
This reverts commit 367704.
llvm-svn: 367707
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 95409fdc330..227107c051d 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.Hdr.Offset); + IO.mapRequired("Offset", Symbol.Offset); IO.mapRequired("Range", Symbol.Range); IO.mapRequired("Gaps", Symbol.Gaps); } |