a-tarasyuk wrote:
@cor3ntin could you review the latest changes?
https://github.com/llvm/llvm-project/pull/119153
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/DavidSpickett edited
https://github.com/llvm/llvm-project/pull/118309
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -0,0 +1,173 @@
+//===--- UseIntegerSignComparisonCheck.cpp - clang-tidy
---===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Ap
@@ -0,0 +1,47 @@
+//===--- UseIntegerSignComparisonCheck.h - clang-tidy ---*- C++
-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
DavidSpickett wrote:
Polly pushed in
https://github.com/llvm/llvm-project/commit/788d5a5f1e1263657f0a281545e095769f6b375b.
Only libclc remains.
https://github.com/llvm/llvm-project/pull/118309
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
h
@@ -25,3 +26,12 @@
// CHECK-ARM: cortex-a73
// CHECK-ARM: cortex-a75
// CHECK-ARM: Use -mcpu or -mtune to specify the target's processor.
+
+// RUN: %clang --target=arm64-apple-macosx --print-supported-cpus 2>&1 | \
+// RUN: FileCheck %s --check-prefix=CHECK-AARCH64
--implic
https://github.com/fhahn edited https://github.com/llvm/llvm-project/pull/118581
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -137,8 +146,11 @@ static void cpuHelp(ArrayRef CPUTable)
{
// Print the CPU table.
errs() << "Available CPUs for this target:\n\n";
- for (auto &CPU : CPUTable)
-errs() << "\t" << CPU.Key << "\n";
+ for (auto &CPU : CPUNames) {
+if (CPU == "apple-latest")
+
https://github.com/fhahn approved this pull request.
LGTM, thanks.
Add a few minor suggestions
https://github.com/llvm/llvm-project/pull/118581
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe
@@ -104,14 +110,17 @@ static void Help(ArrayRef CPUTable,
}
// Determine the length of the longest CPU and Feature entries.
- unsigned MaxCPULen = getLongestEntryLength(CPUTable);
+ unsigned MaxCPULen = getLongestEntryLength(CPUNames);
unsigned MaxFeatLen = getLonges
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: ykiko (16bit-ykiko)
Changes
Fix https://github.com/llvm/llvm-project/issues/119129.
---
Full diff: https://github.com/llvm/llvm-project/pull/119212.diff
1 Files Affected:
- (modified) clang/lib/Sema/SemaExpr.cpp (+1-1)
``diff
https://github.com/16bit-ykiko created
https://github.com/llvm/llvm-project/pull/119212
Fix https://github.com/llvm/llvm-project/issues/119129.
>From 64dcfdfd0a87d6ca5bfcfe5f5a8e5204c24a26d2 Mon Sep 17 00:00:00 2001
From: ykiko
Date: Mon, 9 Dec 2024 21:56:58 +0800
Subject: [PATCH] Fix call loc
llvmbot wrote:
@llvm/pr-subscribers-backend-risc-v
Author: Nikita Popov (nikic)
Changes
Infer nuw from nusw and nneg. This is the constant expression variant of
https://github.com/llvm/llvm-project/pull/44.
Proof: https://alive2.llvm.org/ce/z/ihztLy
---
Patch is 187.43 KiB, truncat
llvmbot wrote:
@llvm/pr-subscribers-clang
@llvm/pr-subscribers-backend-systemz
Author: Nikita Popov (nikic)
Changes
Infer nuw from nusw and nneg. This is the constant expression variant of
https://github.com/llvm/llvm-project/pull/44.
Proof: https://alive2.llvm.org/ce/z/ihztLy
---
llvmbot wrote:
@llvm/pr-subscribers-llvm-analysis
Author: Nikita Popov (nikic)
Changes
Infer nuw from nusw and nneg. This is the constant expression variant of
https://github.com/llvm/llvm-project/pull/44.
Proof: https://alive2.llvm.org/ce/z/ihztLy
---
Patch is 187.43 KiB, truncate
ostannard wrote:
The code changes are all in llvm (not clang), so the tests need to be there
too, using `llvm-mc` and `llc` instead of `clang`.
I'd prefer to see the code for the assembly parser before reviewing this,
because that will probably affect the API design of the streamer, since it w
https://github.com/cor3ntin updated
https://github.com/llvm/llvm-project/pull/112860
>From 7eaab8513da17992e73ed92dbdbaa2dc0ece59ba Mon Sep 17 00:00:00 2001
From: Corentin Jabot
Date: Fri, 18 Oct 2024 10:59:35 +0200
Subject: [PATCH 1/2] '[Clang] Fix handling of immediate escalation for
inherit
cor3ntin wrote:
This needs tests (you could adapt #119129 to to make foo a constexpr function
returning the line number, and checking that. use `#line 4242` to make the test
less susceptible to lines changes
https://github.com/llvm/llvm-project/pull/119212
_
https://github.com/AdUhTkJm updated
https://github.com/llvm/llvm-project/pull/119098
>From 902de28b3d37c0255d6ba59c1155b8ffb0e2d42e Mon Sep 17 00:00:00 2001
From: AdUhTkJm <2292398...@qq.com>
Date: Sun, 8 Dec 2024 08:07:59 +0800
Subject: [PATCH] [Clang] Fix crash for incompatible types in inline
https://github.com/Ptkyr updated
https://github.com/llvm/llvm-project/pull/118563
>From 6d723faf919c3fe3788700a5fc639ebd856aa6d7 Mon Sep 17 00:00:00 2001
From: Eric Wang <48936088+pt...@users.noreply.github.com>
Date: Tue, 3 Dec 2024 19:04:14 -0500
Subject: [PATCH] [Clang] Fix typo in ItaniumRec
https://github.com/zibi2 updated
https://github.com/llvm/llvm-project/pull/119241
>From d3ee5e960bbf20286d726135423eb632ae45eafb Mon Sep 17 00:00:00 2001
From: Zbigniew Sarbinowski
Date: Mon, 9 Dec 2024 18:17:47 +
Subject: [PATCH 1/2] Rename __ prefix to __libcpp_ for locale related
functi
https://github.com/zibi2 updated
https://github.com/llvm/llvm-project/pull/119241
>From d3ee5e960bbf20286d726135423eb632ae45eafb Mon Sep 17 00:00:00 2001
From: Zbigniew Sarbinowski
Date: Mon, 9 Dec 2024 18:17:47 +
Subject: [PATCH 1/3] Rename __ prefix to __libcpp_ for locale related
functi
@@ -0,0 +1,36 @@
+.. title:: clang-tidy - modernize-use-integer-sign-comparison
+
+modernize-use-integer-sign-comparison
+=
+
+Replace comparisons between signed and unsigned integers with their safe
+C++20 ``std::cmp_*`` alternative, if availab
https://github.com/mikolaj-pirog edited
https://github.com/llvm/llvm-project/pull/119238
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -0,0 +1,96 @@
+//===--- UseSpanFirstLastCheck.cpp - clang-tidy -*- C++
-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
https://github.com/lei137 updated
https://github.com/llvm/llvm-project/pull/118004
>From e2046b5000e1a6e104121a8022d33f4f181f5d03 Mon Sep 17 00:00:00 2001
From: Lei Huang
Date: Wed, 27 Nov 2024 18:44:38 +
Subject: [PATCH 1/7] update llc tc affected
---
.../CostModel/PowerPC/load-to-trunc.
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `lldb-aarch64-windows`
running on `linaro-armv8-windows-msvc-05` while building `clang,llvm` at step 6
"test".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/141/builds/4569
Here is the relevant piec
AaronBallman wrote:
FYI, I'm going to be out on vacation after today, so if this is ready to land,
someone else can feel free to press the button. Otherwise, I can pick this up
again when I'm back.
https://github.com/llvm/llvm-project/pull/118800
___
@@ -524,9 +524,7 @@ define i64 @utest_f64i64(double %x) {
; CHECK-NEXT:local.get 0
; CHECK-NEXT:call __fixunsdfti
; CHECK-NEXT:local.get 1
-; CHECK-NEXT:i32.const 8
-; CHECK-NEXT:i32.add
-; CHECK-NEXT:i64.load 0
+; CHECK-NEXT:i64.load 8
-
carlocab wrote:
No worries, I missed it too. For future reference, it might be useful to check
the rich diff too:
https://github.com/user-attachments/assets/003082f8-1135-4be2-996a-2cde6691f61a";>
https://github.com/llvm/llvm-project/pull/119249
___
https://github.com/workingjubilee edited
https://github.com/llvm/llvm-project/pull/119204
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/ilovepi created
https://github.com/llvm/llvm-project/pull/119252
Reverts llvm/llvm-project#112277
This broke something on Fuchsia's Mac builders,
so there's still something in the CMake that needs to be updated before we
reland.
Failed build:
https://ci.chromium.org/ui/p/
Author: Paul Kirth
Date: 2024-12-09T11:25:01-08:00
New Revision: 1cbd67efe438bdf0a8183482471107363ce091d1
URL:
https://github.com/llvm/llvm-project/commit/1cbd67efe438bdf0a8183482471107363ce091d1
DIFF:
https://github.com/llvm/llvm-project/commit/1cbd67efe438bdf0a8183482471107363ce091d1.diff
LO
https://github.com/ilovepi closed
https://github.com/llvm/llvm-project/pull/119252
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Paul Kirth (ilovepi)
Changes
Reverts llvm/llvm-project#112277
This broke something on Fuchsia's Mac builders,
so there's still something in the CMake that needs to be updated before we
reland.
Failed build:
https://ci.chromium.org/ui/p
Author: Carlo Cabrera
Date: 2024-12-10T03:24:04+08:00
New Revision: 511e84ff2624b76948e35a2220550a67ae67b264
URL:
https://github.com/llvm/llvm-project/commit/511e84ff2624b76948e35a2220550a67ae67b264
DIFF:
https://github.com/llvm/llvm-project/commit/511e84ff2624b76948e35a2220550a67ae67b264.diff
https://github.com/carlocab closed
https://github.com/llvm/llvm-project/pull/119249
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/joaosaffran updated
https://github.com/llvm/llvm-project/pull/119041
>From f6a7af10669d71251c2235bef5b2625d88fa1d90 Mon Sep 17 00:00:00 2001
From: Joao Saffran
Date: Fri, 6 Dec 2024 01:27:24 +
Subject: [PATCH 1/4] Apply DXC fix and add tests
---
clang/lib/CodeGen/CGDebu
https://github.com/jijjijj updated
https://github.com/llvm/llvm-project/pull/118537
>From d0a3059a10b7ceeb7e9c27068266f8c41e794203 Mon Sep 17 00:00:00 2001
From: jijjijj
Date: Tue, 3 Dec 2024 22:57:34 +0300
Subject: [PATCH 1/2] Fix std::initializer_list recognition if it's exported
out of a mo
https://github.com/joaosaffran edited
https://github.com/llvm/llvm-project/pull/119041
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -183,11 +183,12 @@ class LLVM_LIBRARY_VISIBILITY WebAssembly32TargetInfo
const TargetOptions &Opts)
: WebAssemblyTargetInfo(T, Opts) {
if (T.isOSEmscripten())
- resetDataLayout("e-m:e-p:32:32-p10:8:8-p20:8:8-i64:64-f128:64-n3
https://github.com/V-FEXrt updated
https://github.com/llvm/llvm-project/pull/117245
>From 1156d98a0ba25a92b4edbacb7c17e5ad6bb2b522 Mon Sep 17 00:00:00 2001
From: Ashley Coleman
Date: Thu, 21 Nov 2024 08:42:31 -0700
Subject: [PATCH 1/2] [HLSL] Implement WaveActiveAllTrue Intrinsic
---
clang/in
https://github.com/hokein updated
https://github.com/llvm/llvm-project/pull/119197
>From 85f1d54459125568bfbe2088827040c3b05a7804 Mon Sep 17 00:00:00 2001
From: Haojian Wu
Date: Mon, 9 Dec 2024 11:48:59 +0100
Subject: [PATCH 1/2] [clang] Fix a dangling reference in
clang/utils/TableGen/ClangDi
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Jacob Lifshay (programmerjake)
Changes
Originally added in #112035
cc @sunfishcode
---
Full diff: https://github.com/llvm/llvm-project/pull/119262.diff
1 Files Affected:
- (modified) clang/lib/Basic/Targets/WebAssembly.cpp (+1-1)
```
llvmbot wrote:
@llvm/pr-subscribers-backend-webassembly
Author: Jacob Lifshay (programmerjake)
Changes
Originally added in #112035
cc @sunfishcode
---
Full diff: https://github.com/llvm/llvm-project/pull/119262.diff
1 Files Affected:
- (modified) clang/lib/Basic/Targets/WebAssembly.cpp
https://github.com/programmerjake created
https://github.com/llvm/llvm-project/pull/119262
Originally added in #112035
cc @sunfishcode
>From 6c8d075462e70c6d03938c07bdb2733ede916d89 Mon Sep 17 00:00:00 2001
From: Jacob Lifshay
Date: Mon, 9 Dec 2024 12:17:23 -0800
Subject: [PATCH] [clang] wasm
https://github.com/gedare updated
https://github.com/llvm/llvm-project/pull/119044
>From c6b628536daf5640c383fd7abe629e84d1505ae2 Mon Sep 17 00:00:00 2001
From: Gedare Bloom
Date: Fri, 6 Dec 2024 16:52:35 -0700
Subject: [PATCH 1/2] [clang-format] Reorder TokenAnnotator::canBreakBefore
Move the
@@ -6105,6 +6105,33 @@ bool TokenAnnotator::canBreakBefore(const AnnotatedLine
&Line,
return false;
}
+ // We only break before r_brace if there was a corresponding break before
+ // the l_brace, which is tracked by BreakBeforeClosingBrace.
gedare w
https://github.com/gedare updated
https://github.com/llvm/llvm-project/pull/119044
>From c5bf1fc70df08ef94cc32a47d1bdce69c92c2abf Mon Sep 17 00:00:00 2001
From: Gedare Bloom
Date: Fri, 6 Dec 2024 16:52:35 -0700
Subject: [PATCH] [clang-format] Reorder TokenAnnotator::canBreakBefore
Move the che
dyung wrote:
> > > Not sure what to do debug this... @zmodem maybe has some idea?
> >
> >
> > Sorry, I don't have a lot to add. Things look good on my end so far (local
> > builds and https://lab.llvm.org/buildbot/#/builders/63 +
> > https://lab.llvm.org/buildbot/#/builders/107).
> > Besides
@@ -46,6 +46,9 @@ typedef struct {
/**
* Retrieve the character data associated with the given string.
+ *
+ * The caller shouldn't free the returned string data, and the returned string
+ * data shouldn't be accessed after the \c CXString disposed.
compnerd
@@ -3902,6 +3902,8 @@ void Preprocessor::HandleEmbedDirectiveImpl(
}
EmbedAnnotationData *Data = new (BP) EmbedAnnotationData;
+ Data->Filename = Filename;
+ Data->IsAngled = IsAngled;
Data->BinaryData = BinaryContents;
AaronBallman wrote:
I think th
https://github.com/cor3ntin updated
https://github.com/llvm/llvm-project/pull/112860
>From 7eaab8513da17992e73ed92dbdbaa2dc0ece59ba Mon Sep 17 00:00:00 2001
From: Corentin Jabot
Date: Fri, 18 Oct 2024 10:59:35 +0200
Subject: [PATCH 1/2] '[Clang] Fix handling of immediate escalation for
inherit
https://github.com/cor3ntin approved this pull request.
https://github.com/llvm/llvm-project/pull/119153
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jhuber6 updated
https://github.com/llvm/llvm-project/pull/119091
>From ccbbc8cd83415aa56fbc3726069776255bcbc918 Mon Sep 17 00:00:00 2001
From: Joseph Huber
Date: Sat, 7 Dec 2024 13:47:23 -0600
Subject: [PATCH] [OpenMP] Use generic IR for the OpenMP DeviceRTL
Summary:
We prev
@@ -368,8 +368,8 @@ bool CXXRecordDecl::FindBaseClass(const CXXBaseSpecifier
*Specifier,
const CXXRecordDecl *BaseRecord) {
assert(BaseRecord->getCanonicalDecl() == BaseRecord &&
"User data for FindBaseClass is not canonical!");
-
ymand wrote:
This review has been going on for longer than a month so, as one of the
reviewers and the original author of this check, I wanted to jump in and see if
we can bring it to an agreeable conclusion. I’d like to start with some
background:
* This check was introduced in 2020 with the
pawosm-arm wrote:
> > with -fveclib=ArmPL -lamath put into a config file, it will always be
> > linked with libamath, even if the user decides to use -fveclib=none
>
> I think there might be a related issue with the approach in this patch too
> though, in that `-fveclib=ArmPL` will silently fo
https://github.com/momchil-velikov edited
https://github.com/llvm/llvm-project/pull/118124
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -0,0 +1,78 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
UTC_ARGS: --version 5
+; RUN: llc -mattr=+bf16,+sve2,+fp8 < %s | FileCheck %s
momchil-velikov wrote:
Removed.
https://github.com/llvm/llvm-project/pull/118123
__
DKLoehr wrote:
Ping
https://github.com/llvm/llvm-project/pull/117622
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/momchil-velikov edited
https://github.com/llvm/llvm-project/pull/118123
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
lei137 wrote:
ping
https://github.com/llvm/llvm-project/pull/118004
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -373,6 +373,13 @@ void ReadFunctionInfo(const uint8_t *&Data, FunctionInfo
&Info) {
endian::readNext(Data);
Info.ResultType = std::string(Data, Data + ResultTypeLen);
Data += ResultTypeLen;
+
+ unsigned SwiftReturnOwnershipLength =
+ endian::readNext(Data);
https://github.com/ilovepi closed
https://github.com/llvm/llvm-project/pull/112277
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/fahadnayyar updated
https://github.com/llvm/llvm-project/pull/118938
>From 781bb2a49fed8fa38059cfd23563b02c82f83eb0 Mon Sep 17 00:00:00 2001
From: Fahad Nayyar
Date: Thu, 5 Dec 2024 18:25:49 -0800
Subject: [PATCH] [APINotes] Add SWIFT_RETURNS_(UN)RETAINED support to APINotes
https://github.com/RolandF77 approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/118004
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/kazutakahirata closed
https://github.com/llvm/llvm-project/pull/118948
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Kazu Hirata
Date: 2024-12-09T09:47:38-08:00
New Revision: 83cb3dbc0c7c1c6950d52412e3346e3b382d79d6
URL:
https://github.com/llvm/llvm-project/commit/83cb3dbc0c7c1c6950d52412e3346e3b382d79d6
DIFF:
https://github.com/llvm/llvm-project/commit/83cb3dbc0c7c1c6950d52412e3346e3b382d79d6.diff
L
https://github.com/lizhengxing updated
https://github.com/llvm/llvm-project/pull/117781
>From 2941d87dbaf091aa443ad57ce55e98e7bab83d2b Mon Sep 17 00:00:00 2001
From: Zhengxing Li
Date: Wed, 13 Nov 2024 10:54:16 -0800
Subject: [PATCH 1/4] [HLSL] Implement SV_GroupThreadId semantic
Support SV_Gr
@@ -3606,6 +3613,32 @@ bool
SPIRVInstructionSelector::selectSpvThreadId(Register ResVReg,
return Result && MIB.constrainAllUses(TII, TRI, RBI);
}
+bool SPIRVInstructionSelector::selectSpvThreadId(Register ResVReg,
+ const SPIR
@@ -3606,6 +3613,32 @@ bool
SPIRVInstructionSelector::selectSpvThreadId(Register ResVReg,
return Result && MIB.constrainAllUses(TII, TRI, RBI);
}
+bool SPIRVInstructionSelector::selectSpvThreadId(Register ResVReg,
+ const SPIR
@@ -0,0 +1,21 @@
+; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv-unknown-unknown %s -o - |
FileCheck %s
+; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-unknown %s -o -
-filetype=obj | spirv-val %}
+
+; CHECK-DAG: %[[#bool:]] = OpTypeBool
+; CHECK-DAG: %[[#uint:]]
@@ -524,9 +524,7 @@ define i64 @utest_f64i64(double %x) {
; CHECK-NEXT:local.get 0
; CHECK-NEXT:call __fixunsdfti
; CHECK-NEXT:local.get 1
-; CHECK-NEXT:i32.const 8
-; CHECK-NEXT:i32.add
-; CHECK-NEXT:i64.load 0
+; CHECK-NEXT:i64.load 8
-
llvmbot wrote:
@llvm/pr-subscribers-libcxx
@llvm/pr-subscribers-clang
Author: Zibi Sarbinowski (zibi2)
Changes
This PR is necessary to resolve name collisions between locale functions
defined within libc++ and macros used in z/OS system header, `locale.h`.
Those macros cannot be change
https://github.com/zibi2 created
https://github.com/llvm/llvm-project/pull/119241
This PR is necessary to resolve name collisions between locale functions
defined within libc++ and macros used in z/OS system header, `locale.h`.
Those macros cannot be changed since they are visible and out in
https://github.com/carlocab updated
https://github.com/llvm/llvm-project/pull/115993
>From b072008a5b1a3bd697e3f9efc091bcddfbcc3547 Mon Sep 17 00:00:00 2001
From: Carlo Cabrera
Date: Wed, 13 Nov 2024 13:09:59 +0800
Subject: [PATCH] [Darwin][Driver][clang] Prioritise command line flags over
`DE
carlocab wrote:
Dropped the `--sysroot=""` flag from the test.
> Changing the test itself (to e.g. locally set that env var) is a good
> regression test that should be added for this pr anyway.
Sorry, which env var are you referring to?
https://github.com/llvm/llvm-project/pull/115993
___
https://github.com/ldionne requested changes to this pull request.
Instead, can't you `#undef` these macros? We're trying to move away from
defining names with `__libcpp`.
https://github.com/llvm/llvm-project/pull/119241
___
cfe-commits mailing list
c
jwanggit86 wrote:
@arsenm @kzhuravl If there are no more comments, I'm going to merge this PR.
https://github.com/llvm/llvm-project/pull/118907
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-
perry-ca wrote:
These macros can't be undef'ed as they are used to implement the functions like
islower(int) by the headers like ctype.h. Any name other than __X will work
for these inline functions in libc++.
https://github.com/llvm/llvm-project/pull/119241
__
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 788d5a5f1e1263657f0a281545e095769f6b375b
d3ee5e960bbf20286d726135423eb632ae45eafb --e
https://github.com/amy-kwan approved this pull request.
Thanks for clarifying my earlier comment. LGTM.
https://github.com/llvm/llvm-project/pull/118004
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/list
https://github.com/malek203 updated
https://github.com/llvm/llvm-project/pull/110523
>From f5b5d4262318c4a2048c145aea923c1108ba65f2 Mon Sep 17 00:00:00 2001
From: Malek Ben Slimane
Date: Wed, 11 Sep 2024 22:07:45 +0200
Subject: [PATCH] Thread Safety Analysis: Support passing scoped locks betwee
https://github.com/bob80905 approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/118640
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/bob80905 updated
https://github.com/llvm/llvm-project/pull/115971
>From 7413ceb21a6e0ac9212ef6317763ee0eff559612 Mon Sep 17 00:00:00 2001
From: Joshua Batista
Date: Tue, 12 Nov 2024 16:44:00 -0800
Subject: [PATCH 01/10] print struct body within target ext ty context
---
...
https://github.com/JOE1994 created
https://github.com/llvm/llvm-project/pull/119246
A necessary AddrSpaceCast was wrongfully deleted in
5c91b2886f6bf400b60ca7839069839ac3980f8f . Recover the AddrSpaceCast.
This fixes #86791 .
>From 9dbcf65775a979553bee2c95b16e3e2328e957a1 Mon Sep 17 00:00:00
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Youngsuk Kim (JOE1994)
Changes
A necessary AddrSpaceCast was wrongfully deleted in
5c91b2886f6bf400b60ca7839069839ac3980f8f . Recover the AddrSpaceCast.
This fixes #86791 .
---
Full diff: https://github.com/llvm/llvm-project/pull/119246.
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Youngsuk Kim (JOE1994)
Changes
A necessary AddrSpaceCast was wrongfully deleted in
5c91b2886f6bf400b60ca7839069839ac3980f8f . Recover the AddrSpaceCast.
This fixes #86791 .
---
Full diff: https://github.com/llvm/llvm-project/pul
llvmbot wrote:
@llvm/pr-subscribers-clang-codegen
Author: Youngsuk Kim (JOE1994)
Changes
A necessary AddrSpaceCast was wrongfully deleted in
5c91b2886f6bf400b60ca7839069839ac3980f8f . Recover the AddrSpaceCast.
This fixes #86791 .
---
Full diff: https://github.com/llvm/llvm-project/pull
https://github.com/s-barannikov edited
https://github.com/llvm/llvm-project/pull/119246
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/s-barannikov commented:
May it be possible that the wrapper function's return type is invalid and the
cast isn't needed?
https://github.com/llvm/llvm-project/pull/119246
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https
@@ -3302,6 +3302,9 @@ void ItaniumCXXABI::EmitThreadLocalInitFuncs(
CharUnits Align = CGM.getContext().getDeclAlign(VD);
Val = Builder.CreateAlignedLoad(Var->getValueType(), Val, Align);
}
+if (Val->getType() != Wrapper->getReturnType()) {
+ Val = Build
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Carlo Cabrera (carlocab)
Changes
This was added in #117573 but the options were not being rendered
correctly due to the missing newline after `::`.
---
Full diff: https://github.com/llvm/llvm-project/pull/119249.diff
1 Files Affected:
@@ -0,0 +1,47 @@
+//===--- UseIntegerSignComparisonCheck.h - clang-tidy ---*- C++
-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
https://github.com/SunilKuravinakop updated
https://github.com/llvm/llvm-project/pull/117904
>From 1703aa62cfe35538aedbacb28e907535e838248c Mon Sep 17 00:00:00 2001
From: Sunil Kuravinakop
Date: Fri, 20 Sep 2024 01:41:29 -0500
Subject: [PATCH 1/2] Support for dispatch construct (Sema & Codegen)
https://github.com/carlocab created
https://github.com/llvm/llvm-project/pull/119249
This was added in #117573 but the options were not being rendered
correctly due to the missing newline after `::`.
>From ed70bf358357a5b54599db4a89e61588fd96aca7 Mon Sep 17 00:00:00 2001
From: Carlo Cabrera
D
https://github.com/zibi2 updated
https://github.com/llvm/llvm-project/pull/119241
>From d3ee5e960bbf20286d726135423eb632ae45eafb Mon Sep 17 00:00:00 2001
From: Zbigniew Sarbinowski
Date: Mon, 9 Dec 2024 18:17:47 +
Subject: [PATCH 1/4] Rename __ prefix to __libcpp_ for locale related
functi
https://github.com/bob80905 updated
https://github.com/llvm/llvm-project/pull/115971
>From 7413ceb21a6e0ac9212ef6317763ee0eff559612 Mon Sep 17 00:00:00 2001
From: Joshua Batista
Date: Tue, 12 Nov 2024 16:44:00 -0800
Subject: [PATCH 01/11] print struct body within target ext ty context
---
...
https://github.com/bob80905 edited
https://github.com/llvm/llvm-project/pull/115971
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
101 - 200 of 478 matches
Mail list logo