diff options
| author | Reid Kleckner <rnk@google.com> | 2018-08-16 17:34:31 +0000 |
|---|---|---|
| committer | Reid Kleckner <rnk@google.com> | 2018-08-16 17:34:31 +0000 |
| commit | bd5d71229db6c6c4f2446229de9b0e930b7f6be9 (patch) | |
| tree | c7bf8f171a38310c196d7ad99ad68cd029d52850 /llvm/test/DebugInfo/PDB | |
| parent | eb189a0ef77b6399b822de2a4e8847e573c50702 (diff) | |
| download | bcm5719-llvm-bd5d71229db6c6c4f2446229de9b0e930b7f6be9.tar.gz bcm5719-llvm-bd5d71229db6c6c4f2446229de9b0e930b7f6be9.zip | |
[codeview] Use push_macro to avoid conflicts instead of a prefix
Summary:
This prefix was added in r333421, and it changed our dumper output to
say things like "CVRegEAX" instead of just "EAX". That's a functional
change that I'd rather avoid.
I tested GCC, Clang, and MSVC, and all of them support #pragma
push_macro. They don't issue warnings whem the macro is not defined
either.
I don't have a Mac so I can't test the real termios.h header, but I
looked at the termios.h sources online and looked for other conflicts.
I saw only the CR* macros, so those are the ones we work around.
Reviewers: zturner, JDevlieghere
Subscribers: hiraditya, llvm-commits
Differential Revision: https://reviews.llvm.org/D50851
llvm-svn: 339907
Diffstat (limited to 'llvm/test/DebugInfo/PDB')
| -rw-r--r-- | llvm/test/DebugInfo/PDB/DIA/pdbdump-symbol-format.test | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/test/DebugInfo/PDB/DIA/pdbdump-symbol-format.test b/llvm/test/DebugInfo/PDB/DIA/pdbdump-symbol-format.test index 998ec7f2a97..4b247da2b6e 100644 --- a/llvm/test/DebugInfo/PDB/DIA/pdbdump-symbol-format.test +++ b/llvm/test/DebugInfo/PDB/DIA/pdbdump-symbol-format.test @@ -14,14 +14,14 @@ ; SYM_FORMAT: ---SYMBOLS--- ; SYM_FORMAT: symbolformat.obj -; SYM_FORMAT-DAG: func [{{.*}}] (CVRegEBP) int __cdecl _purecall() -; SYM_FORMAT-DAG: func [{{.*}}] (CVRegEBP) int __cdecl main(int argc, char** argv) -; SYM_FORMAT-DAG: func [{{.*}}] (CVRegEBP) void A::A() -; SYM_FORMAT-DAG: func [{{.*}}] (CVRegEBP) void B::B() +; SYM_FORMAT-DAG: func [{{.*}}] (EBP) int __cdecl _purecall() +; SYM_FORMAT-DAG: func [{{.*}}] (EBP) int __cdecl main(int argc, char** argv) +; SYM_FORMAT-DAG: func [{{.*}}] (EBP) void A::A() +; SYM_FORMAT-DAG: func [{{.*}}] (EBP) void B::B() ; SYM_FORMAT-DAG: thunk [{{.*}}] (Pcode) B::`vcall'{0}' -; SYM_FORMAT-DAG: func [{{.*}}] (CVRegEBP) virtual void B::PureFunc() -; SYM_FORMAT-DAG: func [{{.*}}] (CVRegEBP) void A::RegularFunc() -; SYM_FORMAT-DAG: func [{{.*}}] (CVRegEBP) virtual void A::VirtualFunc() +; SYM_FORMAT-DAG: func [{{.*}}] (EBP) virtual void B::PureFunc() +; SYM_FORMAT-DAG: func [{{.*}}] (EBP) void A::RegularFunc() +; SYM_FORMAT-DAG: func [{{.*}}] (EBP) virtual void A::VirtualFunc() ; TYPES_FORMAT: ---TYPES--- ; TYPES_FORMAT: Enums |

