Commit
c3607f52b1fd6fa1bbbcd34e8c593e56b721cf7a
by llvm-dev[X86][SSE] Add test for extractelement from volatile vector load Mentioned in D70267
|
 | llvm/test/CodeGen/X86/extractelement-load.ll |
Commit
840c891a8c248f1eb65981f492165b037e126652
by serguei.n.dmitriev[llvm-objcopy][NFC] Use generated object file in COFF/add-section.test Updated LIT test from D70205 to use generated object file with extended relocation table. Differential Revision: https://reviews.llvm.org/D70269
|
 | llvm/test/tools/llvm-objcopy/COFF/Inputs/x86_64-obj-xrelocs.yaml.gz |
 | llvm/test/tools/llvm-objcopy/COFF/Inputs/x86_64-xrelocs.obj.gz |
 | llvm/test/tools/llvm-objcopy/COFF/add-section.test |
Commit
3dfa975fb36fda1d8cff700d4251db330c83bfa3
by diggerlinAdd read-only data assembly writing for aix SUMMARY: The patch will emit read-only variable assembly code for aix. Reviewers: daltenty,Xiangling_Liao Subscribers: rupprecht, seiyai,hiraditya Differential Revision: https://reviews.llvm.org/D70182
|
 | llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp |
 | llvm/lib/MC/MCObjectFileInfo.cpp |
 | llvm/lib/MC/MCSectionXCOFF.cpp |
 | llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp |
 | llvm/lib/BinaryFormat/XCOFF.cpp |
Commit
ad9fd320091d44d4b8782c28b72a7be21a2bd68d
by sam.mccall[clangd] Fix SelectionTree behavior on constructor init-lists. Summary: For the constructor Foo() : classmember(arg) {} The AST looks like: - CXXCtorInitializer classmember(arg) - CXXConstructExpr classmember(arg) - DeclRefExpr: arg We want the 'classmember' to be associated with the CXXCtorInitializer, not the CXXConstructExpr. (CXXConstructExpr is known to have bad ranges). So just early-claim it. Thanks @hokein for tracking down/reducing the bug. Reviewers: hokein Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, cfe-commits, hokein Tags: #clang Differential Revision: https://reviews.llvm.org/D70312
|
 | clang-tools-extra/clangd/Selection.cpp |
 | clang-tools-extra/clangd/unittests/SelectionTests.cpp |
Commit
713c30b389602eda5c70b696e8c640487cc8b2cb
by sam.mccall[clangd] Don't consider class template params part of constructor name. Summary: This is shorter and usually the extra info is noise. There are cases where the params become type-parameter-0-0 that are hard to fix. This affects a few features: - 'name' field in structured hover API (not exposed yet) - 'name' field in locateSymbolAt (not exposed in LSP) - 'document/symbol' - the symbol is hierarchically nested in the class template, or written as foo<t>::foo when defined out-of-line. Added a test case for hover from https://github.com/clangd/clangd/issues/76. This patch fixes one field, but no fewer than four others are wrong! I'll fix them... Reviewers: hokein Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D70308
|
 | clang-tools-extra/clangd/XRefs.cpp |
 | clang-tools-extra/clangd/AST.cpp |
 | clang-tools-extra/clangd/unittests/XRefsTests.cpp |