diff options
author | Alex Richardson <Alexander.Richardson@cl.cam.ac.uk> | 2020-09-04 16:02:26 +0100 |
---|---|---|
committer | Alex Richardson <Alexander.Richardson@cl.cam.ac.uk> | 2020-09-04 16:56:21 +0100 |
commit | 8c810acc94ed462238242c04c75ab33fc96da6e8 (patch) | |
tree | 7aa524c8a750ad41a397f8fa74e3920c8ba9d801 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 1ffcbe35ae0e136d7dd4cdd77eda306cc98b00e7 (diff) | |
download | llvm-8c810acc94ed462238242c04c75ab33fc96da6e8.zip llvm-8c810acc94ed462238242c04c75ab33fc96da6e8.tar.gz llvm-8c810acc94ed462238242c04c75ab33fc96da6e8.tar.bz2 |
[clang-format] Parse __ptr32/__ptr64 as a pointer qualifier
Before:
x = (foo *__ptr32) * v;
MACRO(A * __ptr32 a);
x = (foo *__ptr64) * v;
MACRO(A * __ptr64 a);
After:
x = (foo *__ptr32)*v;
MACRO(A *__ptr32 a);
x = (foo *__ptr64)*v;
MACRO(A *__ptr64 a);
Depends on D86721 (to apply cleanly)
Reviewed By: MyDeveloperDay
Differential Revision: https://reviews.llvm.org/D86775
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
0 files changed, 0 insertions, 0 deletions