diff options
author | Zachary Turner <zturner@google.com> | 2018-11-09 01:09:10 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2018-11-09 01:09:10 +0000 |
commit | eb987742991b49dea4b04ad7f518c8bde1b84446 (patch) | |
tree | 600e8a3a0face48cbde3c0e6652a88ca6c8c89f8 | |
parent | 9f20f3e5377e101a3078976a912c6d1806541234 (diff) | |
download | bcm5719-llvm-eb987742991b49dea4b04ad7f518c8bde1b84446.tar.gz bcm5719-llvm-eb987742991b49dea4b04ad7f518c8bde1b84446.zip |
Fix a test whose output changed.
A previous commit fixed an issue with our AST generation where
we were outputting enum decls incorrectly. But we forgot to
update the test output. This patch updates the test output
accordingly.
llvm-svn: 346459
-rw-r--r-- | lldb/lit/SymbolFile/NativePDB/global-classes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/lit/SymbolFile/NativePDB/global-classes.cpp b/lldb/lit/SymbolFile/NativePDB/global-classes.cpp index d296369bb8f..0da3a456c16 100644 --- a/lldb/lit/SymbolFile/NativePDB/global-classes.cpp +++ b/lldb/lit/SymbolFile/NativePDB/global-classes.cpp @@ -304,8 +304,8 @@ constexpr References ReferencesInstance; // CHECK: | |-FieldDecl {{.*}} o 'long long' // CHECK: | `-FieldDecl {{.*}} p 'int [5]' // CHECK: |-EnumDecl {{.*}} EnumType -// CHECK: | |-EnumConstantDecl {{.*}} A 'unsigned int' -// CHECK: | `-EnumConstantDecl {{.*}} B 'unsigned int' +// CHECK: | |-EnumConstantDecl {{.*}} A 'EnumType' +// CHECK: | `-EnumConstantDecl {{.*}} B 'EnumType' // CHECK: |-CXXRecordDecl {{.*}} struct DerivedClass definition // CHECK: | |-public 'BaseClass<int>' // CHECK: | `-FieldDecl {{.*}} DerivedMember 'int' |