diff options
author | Zachary Turner <zturner@google.com> | 2017-04-24 17:47:52 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-04-24 17:47:52 +0000 |
commit | da949c1804acae801ac0241d7cac87bee1291a24 (patch) | |
tree | 840b93e17255b349f67010f86aab43e83f99eb67 /llvm/test/tools/llvm-pdbdump/Inputs/SimplePaddingTest.cpp | |
parent | 1690164cac96cf3670f380a74b27443c71b6a32e (diff) | |
download | bcm5719-llvm-da949c1804acae801ac0241d7cac87bee1291a24.tar.gz bcm5719-llvm-da949c1804acae801ac0241d7cac87bee1291a24.zip |
[llvm-pdbdump] Merge functionality of graphical and text dumpers.
The *real* difference between these two was that
a) The "graphical" dumper could recurse, while the text one could
not.
b) The "text" dumper could display nested types and functions,
while the graphical one could not.
Merge these two so that there is only one dumper that can recurse
arbitrarily deep and optionally display nested types or not.
llvm-svn: 301204
Diffstat (limited to 'llvm/test/tools/llvm-pdbdump/Inputs/SimplePaddingTest.cpp')
-rw-r--r-- | llvm/test/tools/llvm-pdbdump/Inputs/SimplePaddingTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-pdbdump/Inputs/SimplePaddingTest.cpp b/llvm/test/tools/llvm-pdbdump/Inputs/SimplePaddingTest.cpp index b52af149533..bb327ec1c41 100644 --- a/llvm/test/tools/llvm-pdbdump/Inputs/SimplePaddingTest.cpp +++ b/llvm/test/tools/llvm-pdbdump/Inputs/SimplePaddingTest.cpp @@ -114,6 +114,7 @@ struct SimplePadAggregate { NonEmptyBase1 X; int32_t Y; // the presence of X will cause 3 bytes of padding to be injected. + SimplePadFields1 Fields; } N; struct SimplePadVtable1 { |