summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/alias.cpp
AgeCommit message (Collapse)Author
2024-12-02[Clang] ensure mangled names are valid identifiers before being suggested in ↵Oleksandr T.
ifunc/alias attributes notes (#118170) Fixes #112205 --- Commit that introduced this feature - https://github.com/llvm/llvm-project/commit/9306ef9750b7a319d59f6d3e4977e01e39b8f161
2024-04-16[CodeGen,test] Test llvm-libc style alias attribute with UsingShadowDeclFangrui Song
The pattern is quite involved and deserves a specific codegen test. This test would catch the bug in the first attempt of #87130
2023-03-06[clang][alias|ifunc]: Add a diagnostic for mangled namesDhruv Chawla
When an alias or ifunc attribute refers to a function name that is mangled, a diagnostic is emitted to suggest the mangled name as a replacement for the given function name for every matching name in the current TU. Fixes #59164 Differential Revision: https://reviews.llvm.org/D143803