llvm-project icon indicating copy to clipboard operation
llvm-project copied to clipboard

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.

Results 700 llvm-project issues
Sort by recently updated
recently updated
newest added

As opposed to https://github.com/llvm/llvm-project/issues/58118 the current report does print its coredump on stdout/stderr and does not create core file. With CodeChecker 6.20.0, self-compiled clang 15.0.1, enabled Z3 solver 4.11.2 on...

clang:static analyzer
crash

I noticed that compiling the following D code on LLVM 12 and LLVM 13 yields different results: ```d bool xor(bool lhs, bool rhs) { return (lhs && !rhs) || (!lhs...

llvm:instcombine
missed-optimization

`ripgrep` and `grep` have great colorization options for easily parsing search output. Here's `rg`, for example: It would be really great if `lldb` supported this for `image lookup -r -n...

good first issue
lldb

| | | | --- | --- | | Bugzilla Link | [52222](https://llvm.org/bz52222) | | Version | unspecified | | OS | Linux | | CC | @cathyzhyi,@joker-eph,@nicolasvasilache,@MaheshRavishankar | ##...

bugzilla
mlir:tensor

Using a self-build clang 14.0.6, setup for cross compiling for arm-linux-gnueabihf, leads to the compilation error: ```console /usr/local/bin/../include/c++/v1/__config:13:10: fatal error: '__config_site' file not found ``` I build clang 14.0.6 by:...

clang
libc++

| | | | --- | --- | | Bugzilla Link | [10460](https://llvm.org/bz10460) | | Version | unspecified | | OS | All | | CC | @DougGregor,@jryans,@zygoloid | ##...

good first issue
c++11
bugzilla
clang:diagnostics
confirmed

| | | | --- | --- | | Bugzilla Link | [47117](https://llvm.org/bz47117) | | Version | 11.0 | | OS | Linux | | CC | @zmodem,@zygoloid,@sylvestre | ##...

libclang
bugzilla

Getting HLSL to work with clangd would be _awesome_

HLSL

# Table of contents - [Purpose](#purpose) - [Environment of the Building System](#environment-of-the-building-system) - [Build Options and Errors](#build-options-and-errors) - [Build with GNU Tool Chain](#build-with-gnu-tool-chain) - [The `libc` error](#the-libc-error) - [The `compiler-rt`...

compiler-rt
backend:RISC-V
build-problem
libc

```c++ template constexpr bool b = true; template concept C = b; template class foo { public: void bar() const requires C {} // #1 void bar() const requires (C...

clang:frontend