aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Parse/ParseTentative.cpp
AgeCommit message (Expand)AuthorFilesLines
2024-02-16[C++] Fix parsing of _Alignas in local declarations (#81915)Aaron Ballman1-0/+3
2024-02-15[C23] Fix handling of alignas (#81637)Aaron Ballman1-1/+2
2024-02-13[Clang][Sema] Diagnose friend declarations with enum elaborated-type-specifie...Krystian Stasiowski1-3/+3
2024-01-27[Clang][C++26] Implement Pack Indexing (P2662R3). (#72644)cor3ntin1-0/+14
2024-01-15[Clang][AArch64] Change SME attributes for shared/new/preserved state. (#76971)Sander de Smalen1-1/+2
2023-11-28[HLSL] Parameter modifier parsing and AST (#72139)Chris B1-0/+3
2023-11-14Reapply "[clang] Support fixed point types in C++ (#67750)" (#69963)Leonard Chan1-0/+6
2023-10-24Revert "[clang] Support fixed point types in C++ (#67750)" (#69963)Zahira Ammarguellat1-6/+0
2023-10-02[C++] Implement "Deducing this" (P0847R7)Corentin Jabot1-0/+11
2023-09-29[clang] Support fixed point types in C++ (#67750)PiJoules1-0/+6
2023-08-23[clang-repl] Disambiguate declarations with private typedefsJonas Hahnfeld1-0/+11
2023-08-14[clang-repl] Disambiguate global namespace identifiersJonas Hahnfeld1-0/+1
2023-06-29[Clang] Fix crash in isCXXDeclarationSpecifier when attempting to annotate te...Shafik Yaghmour1-1/+4
2023-06-05[C] Support _Generic expressions with a type operandAaron Ballman1-1/+6
2023-05-31[clang] Add Parse and Sema support for RegularKeyword attributesRichard Sandiford1-1/+7
2023-05-20[Clang] Fix parsing of `(auto(x))`.Corentin Jabot1-11/+88
2023-05-16Revert "[Clang] Fix parsing of `(auto(x))`."Corentin Jabot1-56/+11
2023-05-16[Clang] Fix parsing of `(auto(x))`.Corentin Jabot1-11/+56
2023-05-08[clang-repl] Consider the scope spec in template lookups for deduction guides.Vassil Vassilev1-3/+2
2023-04-30[clang-repl] Correctly disambiguate dtor declarations from statements.Vassil Vassilev1-4/+2
2023-03-17[clang][WebAssembly] Initial support for reference type funcref in clangPaulo Matos1-0/+4
2022-12-03[clang-repl] Support statements on global scope in incremental mode.Vassil Vassilev1-1/+40
2022-11-01[Concepts] Improve diagnostics on a missing 'auto' keyword.Erich Keane1-8/+25
2022-10-20[HLSL] Add groupshare address space.Xiang Li1-0/+3
2022-09-28[C++2a] P0634r3: Down with typename!Nicolas Lesser1-36/+47
2022-08-22[clang] adds unary type transformations as compiler built-insChristopher Di Bella1-4/+7
2022-08-14Revert "[clang] adds unary type transformations as compiler built-ins"Nico Weber1-7/+4
2022-08-14[clang] adds unary type transformations as compiler built-insChristopher Di Bella1-4/+7
2022-08-08[clang] LLVM_FALLTHROUGH => [[fallthrough]]. NFCFangrui Song1-6/+6
2022-03-24[clang][parse] Move source range into ParsedAttibutesViewTimm Bäder1-1/+1
2022-03-07[clang][parser] Stop dragging an EndLoc around when parsing attributesTimm Bäder1-1/+1
2022-01-09[clang] Use true/false instead of 1/0 (NFC)Kazu Hirata1-3/+3
2021-12-06Introduce _BitInt, deprecate _ExtIntAaron Ballman1-0/+2
2021-10-13[clang] Use llvm::is_contained (NFC)Kazu Hirata1-3/+1
2021-10-08Extend init-statement to allow alias-declarationCorentin Jabot1-0/+2
2021-09-06[Clang] Add __ibm128 type to represent ppc_fp128Qiu Chaofan1-0/+2
2021-05-16[clang] Fix ternary operator in the second for loop statementDanila Kutenin1-1/+1
2020-12-07[clang] Add a new nullability annotation for swift async: _Nullable_resultErik Pilkington1-1/+3
2020-07-27Don't form a 'context-independent expr' reference to a member duringRichard Smith1-9/+0
2020-07-13[clang] Include type specifiers in typo correction when checking isCXXDeclara...Haojian Wu1-2/+3
2020-06-05[ARM] Add __bf16 as new Bfloat16 C TypeTies Stuij1-0/+2
2020-06-02Fix compiler crash when an expression parsed in the tentative parsing and mus...Alexey Bataev1-0/+9
2020-05-10Fix typo in enum-base disambiguation.Richard Smith1-1/+1
2020-05-10Properly implement 'enum class' parsing.Richard Smith1-2/+5
2020-05-08Fix parsing of enum-base to follow C++11 rules.Richard Smith1-126/+29
2020-04-17Reland Implement _ExtInt as an extended int type specifier.Erich Keane1-0/+20
2020-04-17Revert "Implement _ExtInt as an extended int type specifier."Sterling Augustine1-20/+0
2020-04-17Implement _ExtInt as an extended int type specifier.Erich Keane1-0/+20
2020-03-27Form invalid template-id annotations when parsing a construct that isRichard Smith1-2/+9
2020-03-27Improve recovery from invalid template-ids.Richard Smith1-8/+15