[clang] [clang-format][NFC] Eliminate the IsCpp parameter in all functions (PR #84599)

2024-03-19 Thread Benjamin Kramer via cfe-commits
d0k wrote: It calls `clang::format::cleanupAroundReplacements` from multiple threads. Now there's a race condition on IsCpp. If this was supposed to be a cleanup please revert it. https://github.com/llvm/llvm-project/pull/84599 ___ cfe-commits mailin

[clang] 3fbac79 - [AArch64] Don't write to source directory in test

2024-03-20 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2024-03-20T14:54:39+01:00 New Revision: 3fbac79064e405a54388d11370ab5a8f0f23914d URL: https://github.com/llvm/llvm-project/commit/3fbac79064e405a54388d11370ab5a8f0f23914d DIFF: https://github.com/llvm/llvm-project/commit/3fbac79064e405a54388d11370ab5a8f0f23914d.dif

[clang] clang serialization unittests: fix some leaks (PR #82773)

2024-02-23 Thread Benjamin Kramer via cfe-commits
https://github.com/d0k approved this pull request. https://github.com/llvm/llvm-project/pull/82773 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[llvm] [clang] [AArch64] Use parseArchExtension function. NFC (PR #78158)

2024-01-15 Thread Benjamin Kramer via cfe-commits
https://github.com/d0k approved this pull request. https://github.com/llvm/llvm-project/pull/78158 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] 4674e30 - [Tooling/Inclusion] Refactor to use tables for compile time

2023-10-24 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-10-24T13:15:02+02:00 New Revision: 4674e303d2603f5d3c8faba2de676ed6ad0299a0 URL: https://github.com/llvm/llvm-project/commit/4674e303d2603f5d3c8faba2de676ed6ad0299a0 DIFF: https://github.com/llvm/llvm-project/commit/4674e303d2603f5d3c8faba2de676ed6ad0299a0.dif

[clang] 24f068b - [Tooling/Inclusion] Fix MSVC build

2023-10-24 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-10-24T13:32:21+02:00 New Revision: 24f068b0f77e5de1980b71f036f6b83c4d506904 URL: https://github.com/llvm/llvm-project/commit/24f068b0f77e5de1980b71f036f6b83c4d506904 DIFF: https://github.com/llvm/llvm-project/commit/24f068b0f77e5de1980b71f036f6b83c4d506904.dif

r369581 - Use C++14 heteregenous lookup for a couple of std::map

2019-08-21 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Wed Aug 21 14:17:34 2019 New Revision: 369581 URL: http://llvm.org/viewvc/llvm-project?rev=369581&view=rev Log: Use C++14 heteregenous lookup for a couple of std::map These call find with a StringRef, heterogenous lookup saves a temporary std::string there. Modified: cfe/tr

[clang-tools-extra] r369674 - Retire llvm::less/equal in favor of C++14 std::less<>/equal_to<>.

2019-08-22 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Thu Aug 22 10:31:59 2019 New Revision: 369674 URL: http://llvm.org/viewvc/llvm-project?rev=369674&view=rev Log: Retire llvm::less/equal in favor of C++14 std::less<>/equal_to<>. Modified: clang-tools-extra/trunk/clang-doc/Representation.h Modified: clang-tools-extra/trunk/c

r369675 - Retire llvm::less_ptr. llvm::deref is much more flexible.

2019-08-22 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Thu Aug 22 10:32:16 2019 New Revision: 369675 URL: http://llvm.org/viewvc/llvm-project?rev=369675&view=rev Log: Retire llvm::less_ptr. llvm::deref is much more flexible. Modified: cfe/trunk/lib/Serialization/ASTWriter.cpp cfe/trunk/utils/TableGen/NeonEmitter.cpp Modifie

[clang-tools-extra] r369679 - [clangd] Fold string copy into lambda capture. NFC.

2019-08-22 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Thu Aug 22 11:09:46 2019 New Revision: 369679 URL: http://llvm.org/viewvc/llvm-project?rev=369679&view=rev Log: [clangd] Fold string copy into lambda capture. NFC. Modified: clang-tools-extra/trunk/clangd/ClangdServer.cpp Modified: clang-tools-extra/trunk/clangd/ClangdServe

[clang-tools-extra] r369695 - Fight a bit against global initializers. NFC.

2019-08-22 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Thu Aug 22 12:43:27 2019 New Revision: 369695 URL: http://llvm.org/viewvc/llvm-project?rev=369695&view=rev Log: Fight a bit against global initializers. NFC. Modified: clang-tools-extra/trunk/clangd/index/CanonicalIncludes.cpp clang-tools-extra/trunk/clangd/index/Ref.cpp

[clang-tools-extra] r369783 - Fix clang-tidy warning in clang-tidy

2019-08-23 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Fri Aug 23 10:27:04 2019 New Revision: 369783 URL: http://llvm.org/viewvc/llvm-project?rev=369783&view=rev Log: Fix clang-tidy warning in clang-tidy argument name 'FixDescription' in comment does not match parameter name 'Description' Patch by Nils Barth! Modified: clang-

r369803 - Do a sweep of symbol internalization. NFC.

2019-08-23 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Fri Aug 23 12:59:23 2019 New Revision: 369803 URL: http://llvm.org/viewvc/llvm-project?rev=369803&view=rev Log: Do a sweep of symbol internalization. NFC. Modified: cfe/trunk/lib/CodeGen/CGNonTrivialStruct.cpp cfe/trunk/lib/Frontend/InterfaceStubFunctionsConsumer.cpp

r369846 - [OpenCL] Microoptimize OCL2Qual a bit

2019-08-24 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Sat Aug 24 06:04:34 2019 New Revision: 369846 URL: http://llvm.org/viewvc/llvm-project?rev=369846&view=rev Log: [OpenCL] Microoptimize OCL2Qual a bit Still not optimal, but makes clang 25k smaller. Modified: cfe/trunk/lib/Sema/SemaLookup.cpp cfe/trunk/utils/TableGen/Cla

[clang-tools-extra] r369853 - [clang-tidy] Manually enable exceptions in tesst that uses them

2019-08-24 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Sat Aug 24 10:19:06 2019 New Revision: 369853 URL: http://llvm.org/viewvc/llvm-project?rev=369853&view=rev Log: [clang-tidy] Manually enable exceptions in tesst that uses them Modified: clang-tools-extra/trunk/test/clang-tidy/duplicate-reports.cpp Modified: clang-tools-extr

r369965 - Remove unused variables.

2019-08-26 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Mon Aug 26 13:51:23 2019 New Revision: 369965 URL: http://llvm.org/viewvc/llvm-project?rev=369965&view=rev Log: Remove unused variables. Modified: cfe/trunk/unittests/Tooling/CompilationDatabaseTest.cpp Modified: cfe/trunk/unittests/Tooling/CompilationDatabaseTest.cpp URL:

r370807 - Unbreak the build after r370798

2019-09-03 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Tue Sep 3 11:24:56 2019 New Revision: 370807 URL: http://llvm.org/viewvc/llvm-project?rev=370807&view=rev Log: Unbreak the build after r370798 Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/NonNullPar

r309888 - Remove unused diagnostic. NFC.

2017-08-02 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Wed Aug 2 14:16:50 2017 New Revision: 309888 URL: http://llvm.org/viewvc/llvm-project?rev=309888&view=rev Log: Remove unused diagnostic. NFC. Modified: cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td Modified: cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td URL

r310278 - Add some missing -no-canonical-prefixes.

2017-08-07 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Mon Aug 7 11:31:01 2017 New Revision: 310278 URL: http://llvm.org/viewvc/llvm-project?rev=310278&view=rev Log: Add some missing -no-canonical-prefixes. Modified: cfe/trunk/test/Driver/openmp-offload.c Modified: cfe/trunk/test/Driver/openmp-offload.c URL: http://llvm.org/v

[clang-tools-extra] r310532 - [clang-tidy] Don't compute the edit distance if it's over the threshold.

2017-08-09 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Wed Aug 9 15:09:29 2017 New Revision: 310532 URL: http://llvm.org/viewvc/llvm-project?rev=310532&view=rev Log: [clang-tidy] Don't compute the edit distance if it's over the threshold. No functional change intended. Modified: clang-tools-extra/trunk/clang-tidy/misc/VirtualN

r311286 - [ODRHash] Move into anonymous namespace. NFC.

2017-08-20 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Sun Aug 20 06:02:57 2017 New Revision: 311286 URL: http://llvm.org/viewvc/llvm-project?rev=311286&view=rev Log: [ODRHash] Move into anonymous namespace. NFC. Modified: cfe/trunk/lib/AST/ODRHash.cpp Modified: cfe/trunk/lib/AST/ODRHash.cpp URL: http://llvm.org/viewvc/llvm-pr

[clang] df18650 - Make helper functions static or move them into anonymous namespaces. NFC.

2020-01-14 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-01-14T14:06:37+01:00 New Revision: df186507e1d07c3ddba091a076ba7a33dbdc5867 URL: https://github.com/llvm/llvm-project/commit/df186507e1d07c3ddba091a076ba7a33dbdc5867 DIFF: https://github.com/llvm/llvm-project/commit/df186507e1d07c3ddba091a076ba7a33dbdc5867.dif

[clang] f054617 - [ASTMatchers] Add missing definition for decompositionDecl

2020-09-16 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-09-16T17:32:29+02:00 New Revision: f0546173fa4bdde03ecb21a174fcaa8a6490adbd URL: https://github.com/llvm/llvm-project/commit/f0546173fa4bdde03ecb21a174fcaa8a6490adbd DIFF: https://github.com/llvm/llvm-project/commit/f0546173fa4bdde03ecb21a174fcaa8a6490adbd.dif

[clang] 6a1bca8 - [Analyzer] Fix unused variable warning in Release builds

2020-09-25 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-09-25T14:09:43+02:00 New Revision: 6a1bca8798c6ba119f188061472b60876495b9ae URL: https://github.com/llvm/llvm-project/commit/6a1bca8798c6ba119f188061472b60876495b9ae DIFF: https://github.com/llvm/llvm-project/commit/6a1bca8798c6ba119f188061472b60876495b9ae.dif

[clang] b98e25b - Make helpers static. NFC.

2020-08-19 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-08-19T16:00:03+02:00 New Revision: b98e25b6d7231798a4d819aae3a93f6f1627931a URL: https://github.com/llvm/llvm-project/commit/b98e25b6d7231798a4d819aae3a93f6f1627931a DIFF: https://github.com/llvm/llvm-project/commit/b98e25b6d7231798a4d819aae3a93f6f1627931a.dif

[clang] 8782c72 - Strength-reduce SmallVectors to arrays. NFCI.

2020-08-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-08-28T21:14:20+02:00 New Revision: 8782c727655942c9aa4c80d698c9ba575510799c URL: https://github.com/llvm/llvm-project/commit/8782c727655942c9aa4c80d698c9ba575510799c DIFF: https://github.com/llvm/llvm-project/commit/8782c727655942c9aa4c80d698c9ba575510799c.dif

[clang] 4d0312c - Add proper move ctor/move assign to APValue. NFCI.

2020-09-06 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-09-06T13:02:11+02:00 New Revision: 4d0312c8e05be5353c6c29b31036647dceca3ce5 URL: https://github.com/llvm/llvm-project/commit/4d0312c8e05be5353c6c29b31036647dceca3ce5 DIFF: https://github.com/llvm/llvm-project/commit/4d0312c8e05be5353c6c29b31036647dceca3ce5.dif

[clang-tools-extra] 0db08e5 - [clangd] Map bits/stdint-intn.h and bits/stdint-uintn.h to cstdint.

2020-10-10 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-10T14:13:42+02:00 New Revision: 0db08e59c9d2d3b004ea61f96d823edff283ed25 URL: https://github.com/llvm/llvm-project/commit/0db08e59c9d2d3b004ea61f96d823edff283ed25 DIFF: https://github.com/llvm/llvm-project/commit/0db08e59c9d2d3b004ea61f96d823edff283ed25.dif

[clang] 633f9fc - Make header self-contained. NFC.

2020-10-14 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-14T22:03:19+02:00 New Revision: 633f9fcb820bf01d59cdcdd8038889eec61cf2f2 URL: https://github.com/llvm/llvm-project/commit/633f9fcb820bf01d59cdcdd8038889eec61cf2f2 DIFF: https://github.com/llvm/llvm-project/commit/633f9fcb820bf01d59cdcdd8038889eec61cf2f2.dif

[clang] 2a136a7 - [X86] Autodetect znver3

2020-12-05 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-12-05T19:08:20+01:00 New Revision: 2a136a7a9c68e4818b28bea6051b78a8181ba78e URL: https://github.com/llvm/llvm-project/commit/2a136a7a9c68e4818b28bea6051b78a8181ba78e DIFF: https://github.com/llvm/llvm-project/commit/2a136a7a9c68e4818b28bea6051b78a8181ba78e.dif

[clang] f2cca0b - Silence unused variable warning in Release builds. NFCI.

2020-10-20 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-20T10:48:48+02:00 New Revision: f2cca0b291491f25dc6d2c073d71a2799625ad3b URL: https://github.com/llvm/llvm-project/commit/f2cca0b291491f25dc6d2c073d71a2799625ad3b DIFF: https://github.com/llvm/llvm-project/commit/f2cca0b291491f25dc6d2c073d71a2799625ad3b.dif

[clang] bd2cf96 - [X86] Add a stub for znver3 based on the little public information there is in AMD's manuals

2020-10-24 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-24T19:01:22+02:00 New Revision: bd2cf96c098ed0020f5178eda12cf30d3980d9bd URL: https://github.com/llvm/llvm-project/commit/bd2cf96c098ed0020f5178eda12cf30d3980d9bd DIFF: https://github.com/llvm/llvm-project/commit/bd2cf96c098ed0020f5178eda12cf30d3980d9bd.dif

[clang] b8d2b6f - Unbreak the clang-interpreter example after 0aec49c8531bc5282b095730d34681455826bc2c

2020-10-24 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-24T19:01:21+02:00 New Revision: b8d2b6f6cf6015751fc950c3e8149404e8b37fe8 URL: https://github.com/llvm/llvm-project/commit/b8d2b6f6cf6015751fc950c3e8149404e8b37fe8 DIFF: https://github.com/llvm/llvm-project/commit/b8d2b6f6cf6015751fc950c3e8149404e8b37fe8.dif

[clang] 39a0d68 - [X86] Add a stub for Intel's alderlake.

2020-10-24 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-24T19:01:22+02:00 New Revision: 39a0d6889dee636af3b7fbb69e1ac5c8af777ad0 URL: https://github.com/llvm/llvm-project/commit/39a0d6889dee636af3b7fbb69e1ac5c8af777ad0 DIFF: https://github.com/llvm/llvm-project/commit/39a0d6889dee636af3b7fbb69e1ac5c8af777ad0.dif

[clang] dd7095f - [clang][unittest] Don't hardcode the string "Assertion"

2020-10-26 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-26T18:10:56+01:00 New Revision: dd7095f52bda36e0f3cd37574a1cb97c7a46cffe URL: https://github.com/llvm/llvm-project/commit/dd7095f52bda36e0f3cd37574a1cb97c7a46cffe DIFF: https://github.com/llvm/llvm-project/commit/dd7095f52bda36e0f3cd37574a1cb97c7a46cffe.dif

[clang-tools-extra] 26750a1 - [clang-tidy] Silence unused variable warning in Release builds. NFCI.

2020-10-26 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-26T20:20:23+01:00 New Revision: 26750a1264b3df114a1efae7cde6f0784206b2ce URL: https://github.com/llvm/llvm-project/commit/26750a1264b3df114a1efae7cde6f0784206b2ce DIFF: https://github.com/llvm/llvm-project/commit/26750a1264b3df114a1efae7cde6f0784206b2ce.dif

[clang] 90a9f97 - [openmp] Use front() instead of *begin() to not hide bugs when CurTypes is empty.

2020-10-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-10-28T13:58:23+01:00 New Revision: 90a9f97cbda3bef63d9866d300b73b8ccf65c7f5 URL: https://github.com/llvm/llvm-project/commit/90a9f97cbda3bef63d9866d300b73b8ccf65c7f5 DIFF: https://github.com/llvm/llvm-project/commit/90a9f97cbda3bef63d9866d300b73b8ccf65c7f5.dif

[clang] 1470b85 - Remove AST inclusion from Basic include

2021-05-12 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-05-12T19:51:21+02:00 New Revision: 1470b8587f6fdc357163c2258747b77ae9ad6d7a URL: https://github.com/llvm/llvm-project/commit/1470b8587f6fdc357163c2258747b77ae9ad6d7a DIFF: https://github.com/llvm/llvm-project/commit/1470b8587f6fdc357163c2258747b77ae9ad6d7a.dif

[clang-tools-extra] fde5b24 - [clangd] Make unit test compatible with gtest 1.10.0

2021-05-14 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-05-14T19:37:46+02:00 New Revision: fde5b24963f42c8f21e32e1c5b19e81ddc52e575 URL: https://github.com/llvm/llvm-project/commit/fde5b24963f42c8f21e32e1c5b19e81ddc52e575 DIFF: https://github.com/llvm/llvm-project/commit/fde5b24963f42c8f21e32e1c5b19e81ddc52e575.dif

[clang] 05de4b4 - Put back the trailing commas on TYPED_TEST_SUITE

2021-05-17 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-05-17T14:14:13+02:00 New Revision: 05de4b413930418b60c0dd1e72681b476b50e7fb URL: https://github.com/llvm/llvm-project/commit/05de4b413930418b60c0dd1e72681b476b50e7fb DIFF: https://github.com/llvm/llvm-project/commit/05de4b413930418b60c0dd1e72681b476b50e7fb.dif

[clang] 3f3642a - [CodeGen] Avoid unused variable warning in Release builds. NFCI.

2021-05-18 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-05-18T11:09:12+02:00 New Revision: 3f3642a7631e28e44c248a46703e381d389958a1 URL: https://github.com/llvm/llvm-project/commit/3f3642a7631e28e44c248a46703e381d389958a1 DIFF: https://github.com/llvm/llvm-project/commit/3f3642a7631e28e44c248a46703e381d389958a1.dif

[clang] 8adb6d6 - [clang] Use llvm::reverse. NFCI.

2021-11-07 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-11-07T14:24:33+01:00 New Revision: 8adb6d6de29b67dd0df1016083392a1b2eb1d49a URL: https://github.com/llvm/llvm-project/commit/8adb6d6de29b67dd0df1016083392a1b2eb1d49a DIFF: https://github.com/llvm/llvm-project/commit/8adb6d6de29b67dd0df1016083392a1b2eb1d49a.dif

[clang] 2e20ff8 - [AVR] Remove a global initializer. NFCI.

2021-11-07 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-11-07T16:30:18+01:00 New Revision: 2e20ff8c1ab42ccfe102589114587008b411397f URL: https://github.com/llvm/llvm-project/commit/2e20ff8c1ab42ccfe102589114587008b411397f DIFF: https://github.com/llvm/llvm-project/commit/2e20ff8c1ab42ccfe102589114587008b411397f.dif

[clang] d398e8f - [ASTMatcher] Provide a definition for the lambdaCapture matcher

2021-11-08 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-11-08T20:26:37+01:00 New Revision: d398e8f170fa9b11a13707b8ccc2a278653d374b URL: https://github.com/llvm/llvm-project/commit/d398e8f170fa9b11a13707b8ccc2a278653d374b DIFF: https://github.com/llvm/llvm-project/commit/d398e8f170fa9b11a13707b8ccc2a278653d374b.dif

[clang] 98f80d2 - [Driver] Fix unused variable warning in release builds. NFC.

2021-11-11 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-11-12T00:20:21+01:00 New Revision: 98f80d248d9c888c2219454c1f655bc324b80cdc URL: https://github.com/llvm/llvm-project/commit/98f80d248d9c888c2219454c1f655bc324b80cdc DIFF: https://github.com/llvm/llvm-project/commit/98f80d248d9c888c2219454c1f655bc324b80cdc.dif

[clang] 965f24d - [Driver] Don't litter the source directory in test

2021-03-01 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-03-01T11:20:13+01:00 New Revision: 965f24d4dbd6bc8905de75150d36c693d4396bfd URL: https://github.com/llvm/llvm-project/commit/965f24d4dbd6bc8905de75150d36c693d4396bfd DIFF: https://github.com/llvm/llvm-project/commit/965f24d4dbd6bc8905de75150d36c693d4396bfd.dif

[clang] fd1d8e4 - [clang][dataflow] Make header parse

2021-11-30 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2021-11-30T17:53:19+01:00 New Revision: fd1d8e45f488b28db8d63ab51733ddd1e37e751c URL: https://github.com/llvm/llvm-project/commit/fd1d8e45f488b28db8d63ab51733ddd1e37e751c DIFF: https://github.com/llvm/llvm-project/commit/fd1d8e45f488b28db8d63ab51733ddd1e37e751c.dif

[clang] da4b929 - [clang][Interp] Reorder field destruction to avoid use after dtor

2022-10-31 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-10-31T12:20:10+01:00 New Revision: da4b929da79f4ce886f5612e3c84d29c1d2632f7 URL: https://github.com/llvm/llvm-project/commit/da4b929da79f4ce886f5612e3c84d29c1d2632f7 DIFF: https://github.com/llvm/llvm-project/commit/da4b929da79f4ce886f5612e3c84d29c1d2632f7.dif

[clang] bbf19a6 - [AST] Use std::apply to pop front of tuples. NFCI.

2022-08-24 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-08-25T00:03:08+02:00 New Revision: bbf19a6745d5e2caa60d466c3c9fc8bc8eac3474 URL: https://github.com/llvm/llvm-project/commit/bbf19a6745d5e2caa60d466c3c9fc8bc8eac3474 DIFF: https://github.com/llvm/llvm-project/commit/bbf19a6745d5e2caa60d466c3c9fc8bc8eac3474.dif

[clang] 9be8630 - Add a missing override keyword. NFC.

2022-08-25 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-08-25T14:50:28+02:00 New Revision: 9be8630ca9445b3370385bdbce9b7919f267e38a URL: https://github.com/llvm/llvm-project/commit/9be8630ca9445b3370385bdbce9b7919f267e38a DIFF: https://github.com/llvm/llvm-project/commit/9be8630ca9445b3370385bdbce9b7919f267e38a.dif

[clang] 01bebed - [Basic] Drop header-only dependency from Basic to Lex

2022-08-26 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-08-26T16:03:22+02:00 New Revision: 01bebedaf09bcb7b4f00b8d37a121e68316f9f59 URL: https://github.com/llvm/llvm-project/commit/01bebedaf09bcb7b4f00b8d37a121e68316f9f59 DIFF: https://github.com/llvm/llvm-project/commit/01bebedaf09bcb7b4f00b8d37a121e68316f9f59.dif

[clang] b831af5 - [libTooling] Simplify code with constexpr if. NFCI.

2022-08-27 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-08-27T10:50:06+02:00 New Revision: b831af51977b4150763d69a26a2d912459c1114d URL: https://github.com/llvm/llvm-project/commit/b831af51977b4150763d69a26a2d912459c1114d DIFF: https://github.com/llvm/llvm-project/commit/b831af51977b4150763d69a26a2d912459c1114d.dif

[clang] c5d950f - [HLSL] Simplify code and fix unused variable warnings. NFC.

2022-10-13 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-10-13T09:46:32+02:00 New Revision: c5d950f4699ff0d9eee20fa144a2ef5f2deffa7b URL: https://github.com/llvm/llvm-project/commit/c5d950f4699ff0d9eee20fa144a2ef5f2deffa7b DIFF: https://github.com/llvm/llvm-project/commit/c5d950f4699ff0d9eee20fa144a2ef5f2deffa7b.dif

[clang] 2f35705 - [Interp] Silence warning in release builds. NFC.

2022-10-14 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-10-14T10:38:32+02:00 New Revision: 2f357054d705459c534a74781e4dc24debe78fcb URL: https://github.com/llvm/llvm-project/commit/2f357054d705459c534a74781e4dc24debe78fcb DIFF: https://github.com/llvm/llvm-project/commit/2f357054d705459c534a74781e4dc24debe78fcb.dif

[clang] 2916b99 - [ADT] Alias llvm::Optional to std::optional

2022-12-19 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-12-20T01:01:46+01:00 New Revision: 2916b99182752b1aece8cc4479d8d6a20b5e02da URL: https://github.com/llvm/llvm-project/commit/2916b99182752b1aece8cc4479d8d6a20b5e02da DIFF: https://github.com/llvm/llvm-project/commit/2916b99182752b1aece8cc4479d8d6a20b5e02da.dif

[clang] e632938 - [Sema] Avoid double hash lookup. NFCI

2022-12-30 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-12-30T19:25:38+01:00 New Revision: e6329388c39d18c428afdbbfd0f1330e782bc348 URL: https://github.com/llvm/llvm-project/commit/e6329388c39d18c428afdbbfd0f1330e782bc348 DIFF: https://github.com/llvm/llvm-project/commit/e6329388c39d18c428afdbbfd0f1330e782bc348.dif

[clang] b6942a2 - [NFC] Hide implementation details in anonymous namespaces

2023-01-08 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-01-08T17:37:02+01:00 New Revision: b6942a2880c578d2eab89ecb75e637aac41c5e51 URL: https://github.com/llvm/llvm-project/commit/b6942a2880c578d2eab89ecb75e637aac41c5e51 DIFF: https://github.com/llvm/llvm-project/commit/b6942a2880c578d2eab89ecb75e637aac41c5e51.dif

[clang] e68fc86 - [NFCI][Offload Bundler] Replace hand-rolled endian conversion with llvm::support

2023-01-08 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-01-08T17:37:02+01:00 New Revision: e68fc86b22fd92f15c464b69e8d98a76f139cebd URL: https://github.com/llvm/llvm-project/commit/e68fc86b22fd92f15c464b69e8d98a76f139cebd DIFF: https://github.com/llvm/llvm-project/commit/e68fc86b22fd92f15c464b69e8d98a76f139cebd.dif

[clang] 88eb3c6 - Add FP8 E4M3 support to APFloat.

2022-11-15 Thread Benjamin Kramer via cfe-commits
Author: Reed Date: 2022-11-15T20:26:42+01:00 New Revision: 88eb3c62f25d820a80bc73af786002e1fc4a URL: https://github.com/llvm/llvm-project/commit/88eb3c62f25d820a80bc73af786002e1fc4a DIFF: https://github.com/llvm/llvm-project/commit/88eb3c62f25d820a80bc73af786002e1fc4a.diff LOG: Add

[clang] d8982f7 - [AST] assert(false) -> llvm_unreachable

2023-01-31 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-01-31T18:57:01+01:00 New Revision: d8982f72282bb88da6a3793f9d55fccd5621c825 URL: https://github.com/llvm/llvm-project/commit/d8982f72282bb88da6a3793f9d55fccd5621c825 DIFF: https://github.com/llvm/llvm-project/commit/d8982f72282bb88da6a3793f9d55fccd5621c825.dif

[clang] 18b0d2c - [analyzer] Fix a FIXME. NFCI

2023-01-13 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-01-13T16:15:16+01:00 New Revision: 18b0d2c5d9762070f7c579f2e7ecaa105db7 URL: https://github.com/llvm/llvm-project/commit/18b0d2c5d9762070f7c579f2e7ecaa105db7 DIFF: https://github.com/llvm/llvm-project/commit/18b0d2c5d9762070f7c579f2e7ecaa105db7.dif

[clang] 931d04b - [ADT] Make StringRef::compare like std::string_view::compare

2023-01-15 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-01-15T20:59:21+01:00 New Revision: 931d04be2fc8f3f0505b43e64297f75d526cb42a URL: https://github.com/llvm/llvm-project/commit/931d04be2fc8f3f0505b43e64297f75d526cb42a DIFF: https://github.com/llvm/llvm-project/commit/931d04be2fc8f3f0505b43e64297f75d526cb42a.dif

[clang] 170ca11 - [Sema] Remove unused function after 8c7b64b5ae2a

2022-06-15 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-06-15T12:20:44+02:00 New Revision: 170ca11aeff25735006ca51e5ed3005b672e8f97 URL: https://github.com/llvm/llvm-project/commit/170ca11aeff25735006ca51e5ed3005b672e8f97 DIFF: https://github.com/llvm/llvm-project/commit/170ca11aeff25735006ca51e5ed3005b672e8f97.dif

[clang] 1fd6f06 - [format] Fix an uninitialized variable

2022-06-07 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-06-07T18:18:29+02:00 New Revision: 1fd6f06b9e975386f4bb30ce8a1d044abeb1b633 URL: https://github.com/llvm/llvm-project/commit/1fd6f06b9e975386f4bb30ce8a1d044abeb1b633 DIFF: https://github.com/llvm/llvm-project/commit/1fd6f06b9e975386f4bb30ce8a1d044abeb1b633.dif

[clang] b3c0918 - [AST] Make header self-contained

2022-06-08 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-06-08T12:36:36+02:00 New Revision: b3c0918fb4809ebb681daaf1910e171b204b93ea URL: https://github.com/llvm/llvm-project/commit/b3c0918fb4809ebb681daaf1910e171b204b93ea DIFF: https://github.com/llvm/llvm-project/commit/b3c0918fb4809ebb681daaf1910e171b204b93ea.dif

[clang] [NVPTX] Improve lowering of v4i8 (PR #67866)

2023-10-06 Thread Benjamin Kramer via cfe-commits
https://github.com/d0k approved this pull request. https://github.com/llvm/llvm-project/pull/67866 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [NVPTX] Improve lowering of v4i8 (PR #67866)

2023-10-06 Thread Benjamin Kramer via cfe-commits
https://github.com/d0k approved this pull request. https://github.com/llvm/llvm-project/pull/67866 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] e68ffa3 - [Driver] Make test work on targets that have no OpenMP library configured

2023-08-03 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-08-03T09:59:49+02:00 New Revision: e68ffa373f7f3e61de4e030d126f9968679cdfdc URL: https://github.com/llvm/llvm-project/commit/e68ffa373f7f3e61de4e030d126f9968679cdfdc DIFF: https://github.com/llvm/llvm-project/commit/e68ffa373f7f3e61de4e030d126f9968679cdfdc.dif

[clang] c1796be - Don't rely in llvm::Bitset CTAD. NFC.

2023-09-12 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-09-12T17:04:03+02:00 New Revision: c1796be93fe5e7a5fd672def6f36d6d5062ee559 URL: https://github.com/llvm/llvm-project/commit/c1796be93fe5e7a5fd672def6f36d6d5062ee559 DIFF: https://github.com/llvm/llvm-project/commit/c1796be93fe5e7a5fd672def6f36d6d5062ee559.dif

[clang] 88b7e06 - Revert "[clang][CodeGen] Emit annotations for function declarations."

2023-09-13 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-09-13T13:22:57+02:00 New Revision: 88b7e06dcf9723d0869b0c6bee030b4140e4366d URL: https://github.com/llvm/llvm-project/commit/88b7e06dcf9723d0869b0c6bee030b4140e4366d DIFF: https://github.com/llvm/llvm-project/commit/88b7e06dcf9723d0869b0c6bee030b4140e4366d.dif

[clang] 263fc4c - Turn off memory leaks in unit test

2023-09-14 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-09-14T13:16:22+02:00 New Revision: 263fc4c79a2b41a57dd1bf3a17873002c5d69265 URL: https://github.com/llvm/llvm-project/commit/263fc4c79a2b41a57dd1bf3a17873002c5d69265 DIFF: https://github.com/llvm/llvm-project/commit/263fc4c79a2b41a57dd1bf3a17873002c5d69265.dif

[clang] 7af24c7 - Disable writing an output file to the source directory in Driver test

2023-09-15 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2023-09-15T13:19:13+02:00 New Revision: 7af24c765d0255e6fa4a9f564e0d3699e0cfa107 URL: https://github.com/llvm/llvm-project/commit/7af24c765d0255e6fa4a9f564e0d3699e0cfa107 DIFF: https://github.com/llvm/llvm-project/commit/7af24c765d0255e6fa4a9f564e0d3699e0cfa107.dif

[clang] 5cfc22c - Revert "[SROA] `isVectorPromotionViable()`: memory intrinsics operate on vectors of bytes"

2022-11-23 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2022-11-23T13:11:16+01:00 New Revision: 5cfc22cafe3f2465e0bb324f8daba82ffcabd0df URL: https://github.com/llvm/llvm-project/commit/5cfc22cafe3f2465e0bb324f8daba82ffcabd0df DIFF: https://github.com/llvm/llvm-project/commit/5cfc22cafe3f2465e0bb324f8daba82ffcabd0df.dif

[clang] e8743c0 - Const-initialize ParsedAttrInfos

2020-03-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-28T19:04:53+01:00 New Revision: e8743c0f389d43aeab053904c6407280bfbfd3a6 URL: https://github.com/llvm/llvm-project/commit/e8743c0f389d43aeab053904c6407280bfbfd3a6 DIFF: https://github.com/llvm/llvm-project/commit/e8743c0f389d43aeab053904c6407280bfbfd3a6.dif

[clang] 347e31c - Remove constexpr that MSVC doesn't like

2020-03-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-28T19:23:29+01:00 New Revision: 347e31c052d5a36890c484b6753d480ac8f0062f URL: https://github.com/llvm/llvm-project/commit/347e31c052d5a36890c484b6753d480ac8f0062f DIFF: https://github.com/llvm/llvm-project/commit/347e31c052d5a36890c484b6753d480ac8f0062f.dif

[clang] 4065e92 - Upgrade some instances of std::sort to llvm::sort. NFC.

2020-03-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-28T19:23:29+01:00 New Revision: 4065e92195b1815367d619292080a9a1d3032015 URL: https://github.com/llvm/llvm-project/commit/4065e92195b1815367d619292080a9a1d3032015 DIFF: https://github.com/llvm/llvm-project/commit/4065e92195b1815367d619292080a9a1d3032015.dif

[clang-tools-extra] 4065e92 - Upgrade some instances of std::sort to llvm::sort. NFC.

2020-03-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-28T19:23:29+01:00 New Revision: 4065e92195b1815367d619292080a9a1d3032015 URL: https://github.com/llvm/llvm-project/commit/4065e92195b1815367d619292080a9a1d3032015 DIFF: https://github.com/llvm/llvm-project/commit/4065e92195b1815367d619292080a9a1d3032015.dif

[clang] 6e0afb5 - [ARMMVE] Create fewer temporary SmallVectors

2020-03-29 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-29T22:31:26+02:00 New Revision: 6e0afb5f108fe0570268978f4b32a0c8b4a43ee1 URL: https://github.com/llvm/llvm-project/commit/6e0afb5f108fe0570268978f4b32a0c8b4a43ee1 DIFF: https://github.com/llvm/llvm-project/commit/6e0afb5f108fe0570268978f4b32a0c8b4a43ee1.dif

[clang] e8f13f4 - Replace std::string::find == 0 with StringRef::startswith

2020-03-31 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-31T21:01:09+02:00 New Revision: e8f13f4f62f52067cadb55f3c746ccf9d26ee2ce URL: https://github.com/llvm/llvm-project/commit/e8f13f4f62f52067cadb55f3c746ccf9d26ee2ce DIFF: https://github.com/llvm/llvm-project/commit/e8f13f4f62f52067cadb55f3c746ccf9d26ee2ce.dif

[clang-tools-extra] 02cb21d - Make helpers static. NFC.

2020-04-03 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-04-03T12:48:25+02:00 New Revision: 02cb21df3f4a8c27f3c84fc27e435433fe7f5653 URL: https://github.com/llvm/llvm-project/commit/02cb21df3f4a8c27f3c84fc27e435433fe7f5653 DIFF: https://github.com/llvm/llvm-project/commit/02cb21df3f4a8c27f3c84fc27e435433fe7f5653.dif

[clang] 6aecf0c - Drop unused diagnostic. NFC.

2020-04-03 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-04-03T12:48:25+02:00 New Revision: 6aecf0cfef04e282d2840eb01f998f281d1e7c75 URL: https://github.com/llvm/llvm-project/commit/6aecf0cfef04e282d2840eb01f998f281d1e7c75 DIFF: https://github.com/llvm/llvm-project/commit/6aecf0cfef04e282d2840eb01f998f281d1e7c75.dif

[clang] fc466f8 - Make test not write to the source directory

2020-02-25 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-02-25T16:03:06+01:00 New Revision: fc466f87804f97b322394ef3b9db43ea3febcc15 URL: https://github.com/llvm/llvm-project/commit/fc466f87804f97b322394ef3b9db43ea3febcc15 DIFF: https://github.com/llvm/llvm-project/commit/fc466f87804f97b322394ef3b9db43ea3febcc15.dif

[clang] 6c94068 - [Driver] Remove unused variable. NFC.

2019-11-11 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2019-11-10T12:53:19+01:00 New Revision: 6c94068da99ae694a14f2484a2c9ac74a22bf61a URL: https://github.com/llvm/llvm-project/commit/6c94068da99ae694a14f2484a2c9ac74a22bf61a DIFF: https://github.com/llvm/llvm-project/commit/6c94068da99ae694a14f2484a2c9ac74a22bf61a.dif

[clang-tools-extra] 6623788 - [include-fixer] Python 3 support for clang-include-fixer.py

2019-11-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2019-11-28T14:22:21+01:00 New Revision: 66237889a79f728fffc96394740b975774de26bf URL: https://github.com/llvm/llvm-project/commit/66237889a79f728fffc96394740b975774de26bf DIFF: https://github.com/llvm/llvm-project/commit/66237889a79f728fffc96394740b975774de26bf.dif

[clang-tools-extra] aa189ed - Fix compatibility with python3 of clang-include-fixer.py

2019-12-03 Thread Benjamin Kramer via cfe-commits
Author: Yannick Brehon Date: 2019-12-03T12:55:13+01:00 New Revision: aa189ed25fbd861b07eb5d5116dfd8e33e2b1991 URL: https://github.com/llvm/llvm-project/commit/aa189ed25fbd861b07eb5d5116dfd8e33e2b1991 DIFF: https://github.com/llvm/llvm-project/commit/aa189ed25fbd861b07eb5d5116dfd8e33e2b1991.diff

[clang] 66addf8 - Revert "Fix regression in bdad0a1: force rebuilding of StmtExpr nodes in", "PR45083: Mark statement expressions as being dependent if they appear in"

2020-03-05 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-05T14:14:31+01:00 New Revision: 66addf8e803618758457e4d578c5084e322ca448 URL: https://github.com/llvm/llvm-project/commit/66addf8e803618758457e4d578c5084e322ca448 DIFF: https://github.com/llvm/llvm-project/commit/66addf8e803618758457e4d578c5084e322ca448.dif

Re: [clang] bdad0a1 - PR45083: Mark statement expressions as being dependent if they appear in

2020-03-05 Thread Benjamin Kramer via cfe-commits
It's still crashing clang, reverted this and f545ede91c9d9f271e7504282cab7bf509607ead in 66addf8e8036. c-reduce is still chewing on the reproducer. On Wed, Mar 4, 2020 at 10:20 PM Richard Smith via cfe-commits wrote: > > We found a regression introduced by this patch; fixed in > f545ede91c9d9f27

Re: [clang] bdad0a1 - PR45083: Mark statement expressions as being dependent if they appear in

2020-03-05 Thread Benjamin Kramer via cfe-commits
creduce produced this. It's a crash on invalid, but was created from a valid input. $ cat r.ii template auto b(a) { auto c = [](auto, int) -> decltype(({})) {}; return c(0, 0); } using d = decltype(b(0)); bool f = d ::e; $ clang r.ii -std=c++17 -w clang-11: clang/lib/AST/Decl.cpp:2343: clang

Re: [clang] bdad0a1 - PR45083: Mark statement expressions as being dependent if they appear in

2020-03-05 Thread Benjamin Kramer via cfe-commits
The test case is not important at all, but the crasher seems to be rather bad. I'll send you the full test case. On Thu, Mar 5, 2020 at 9:20 PM Richard Smith via cfe-commits wrote: > > On Thu, 5 Mar 2020 at 06:13, Benjamin Kramer via cfe-commits > wrote: >> >> cre

[clang] 247a177 - Give helpers internal linkage. NFC.

2020-03-10 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-10T18:27:42+01:00 New Revision: 247a177cf78f0e9a51e351e630dd2a78c8f82859 URL: https://github.com/llvm/llvm-project/commit/247a177cf78f0e9a51e351e630dd2a78c8f82859 DIFF: https://github.com/llvm/llvm-project/commit/247a177cf78f0e9a51e351e630dd2a78c8f82859.dif

[clang] 5cc9dea - [tblgen] Remove unused private field. NFC.

2020-03-15 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-15T16:51:22+01:00 New Revision: 5cc9dea78a3b6c01849b03014dc9e684eeaf5d94 URL: https://github.com/llvm/llvm-project/commit/5cc9dea78a3b6c01849b03014dc9e684eeaf5d94 DIFF: https://github.com/llvm/llvm-project/commit/5cc9dea78a3b6c01849b03014dc9e684eeaf5d94.dif

[clang] acf6e41 - Purge unused diagnostics. NFC.

2020-03-17 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-03-17T15:17:10+01:00 New Revision: acf6e4190f401d8da5ab0ff5e350db3c8fb18dfe URL: https://github.com/llvm/llvm-project/commit/acf6e4190f401d8da5ab0ff5e350db3c8fb18dfe DIFF: https://github.com/llvm/llvm-project/commit/acf6e4190f401d8da5ab0ff5e350db3c8fb18dfe.dif

[clang] ef83d46 - Use heterogenous lookup for std;:map

2020-02-08 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-02-08T13:28:29+01:00 New Revision: ef83d46b6b428fa1c8614cd28ab6fe3f07f8d075 URL: https://github.com/llvm/llvm-project/commit/ef83d46b6b428fa1c8614cd28ab6fe3f07f8d075 DIFF: https://github.com/llvm/llvm-project/commit/ef83d46b6b428fa1c8614cd28ab6fe3f07f8d075.dif

[clang-tools-extra] 5fc5c7d - Strength reduce vectors into arrays. NFCI.

2020-02-17 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-02-17T15:37:35+01:00 New Revision: 5fc5c7db38672c8962879b6fdce68393181c5e08 URL: https://github.com/llvm/llvm-project/commit/5fc5c7db38672c8962879b6fdce68393181c5e08 DIFF: https://github.com/llvm/llvm-project/commit/5fc5c7db38672c8962879b6fdce68393181c5e08.dif

[clang] 5fc5c7d - Strength reduce vectors into arrays. NFCI.

2020-02-17 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-02-17T15:37:35+01:00 New Revision: 5fc5c7db38672c8962879b6fdce68393181c5e08 URL: https://github.com/llvm/llvm-project/commit/5fc5c7db38672c8962879b6fdce68393181c5e08 DIFF: https://github.com/llvm/llvm-project/commit/5fc5c7db38672c8962879b6fdce68393181c5e08.dif

[clang] a153d78 - [Driver] Fix implicit conversion guarded by #ifdef _WIN32

2020-01-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-01-29T00:18:45+01:00 New Revision: a153d78c7eb079bcba5ebb37fc1ab9b3c82b99a4 URL: https://github.com/llvm/llvm-project/commit/a153d78c7eb079bcba5ebb37fc1ab9b3c82b99a4 DIFF: https://github.com/llvm/llvm-project/commit/a153d78c7eb079bcba5ebb37fc1ab9b3c82b99a4.dif

[clang] 0d401fa - Fix a couple more implicit conversions that Clang doesn't diagnose.

2020-01-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-01-29T00:42:56+01:00 New Revision: 0d401fa36b532b7d766fd51368b9afb88ad46d1a URL: https://github.com/llvm/llvm-project/commit/0d401fa36b532b7d766fd51368b9afb88ad46d1a DIFF: https://github.com/llvm/llvm-project/commit/0d401fa36b532b7d766fd51368b9afb88ad46d1a.dif

[clang] ddf77f1 - One more batch of things found by g++ 6

2020-01-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-01-29T00:50:34+01:00 New Revision: ddf77f10a301d04ab47ede3bed596b21cda44794 URL: https://github.com/llvm/llvm-project/commit/ddf77f10a301d04ab47ede3bed596b21cda44794 DIFF: https://github.com/llvm/llvm-project/commit/ddf77f10a301d04ab47ede3bed596b21cda44794.dif

[clang] 735f90f - Fix one round of implicit conversions found by g++5.

2020-01-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-01-29T01:52:48+01:00 New Revision: 735f90fe42e55935035d842752e01361b5216c11 URL: https://github.com/llvm/llvm-project/commit/735f90fe42e55935035d842752e01361b5216c11 DIFF: https://github.com/llvm/llvm-project/commit/735f90fe42e55935035d842752e01361b5216c11.dif

[clang] 2b36e85 - GCC5 buildbot made it to clang. Fix implicit conversions it found.

2020-01-28 Thread Benjamin Kramer via cfe-commits
Author: Benjamin Kramer Date: 2020-01-29T02:19:49+01:00 New Revision: 2b36e85542d24161ff4460cb4f0da635e9f5ab62 URL: https://github.com/llvm/llvm-project/commit/2b36e85542d24161ff4460cb4f0da635e9f5ab62 DIFF: https://github.com/llvm/llvm-project/commit/2b36e85542d24161ff4460cb4f0da635e9f5ab62.dif

<    1   2   3   4   5   6   7   8   9   10   >