llvm with tablegen backend for capstone disassembler
Go to file
Jay Foad 735cb7b1f8 [AMDGPU] Avoid using tuple where pair does suffice
Fixes the following building errors, happening with official Android prebuilt clang 14 shipped with Android 13:

external/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp:5491:13: error: no viable constructor or deduction guide for deduction of template arguments of 'tuple'
          ? std::tuple(HSAMD::V3::AssemblerDirectiveBegin,
            ^
...
external/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp:5493:13: error: no viable constructor or deduction guide for deduction of template arguments of 'tuple'
          : std::tuple(HSAMD::AssemblerDirectiveBegin,
            ^

Fixes: 6443c0e ("[AMDGPU] Stop using make_pair and make_tuple. NFC.")

Patch by Mauro Rossi!

Differential Revision: https://reviews.llvm.org/D142839
2023-04-21 08:30:35 +01:00
.github workflows/release-binaries: Install missing dependencies 2023-04-20 08:21:53 -07:00
bolt [BOLT] Make BOLT_ENABLE_RUNTIME user-configurable 2023-04-20 14:41:32 -04:00
clang [OpenMP][AMDGPU] Refactor setting uniform work group size attribute 2023-04-21 01:35:39 -05:00
clang-tools-extra [Clangd] Make the type hint length limit configurable 2023-04-20 15:21:48 +02:00
cmake Revert "[CMake] Unify llvm_check_linker_flag and llvm_check_compiler_linker_flag" 2023-03-28 08:28:17 +00:00
compiler-rt [ORC-RT] Fix typo in include-guard comment. 2023-04-20 21:46:51 -07:00
cross-project-tests [Dexter] Add timeout options 2023-03-22 13:50:00 +00:00
flang [flang] Relax two !DIR$ IGNORE_TKR error cases with descriptor arguments 2023-04-20 13:40:10 -07:00
libc [libc] Another fix to add a null-terminator to the pthread name. 2023-04-21 03:34:34 +00:00
libclc Revert "Revert "Revert "[CMake] Bumps minimum version to 3.20.0.""" 2023-04-15 20:12:24 +02:00
libcxx [libc++] Make bsd_locale_fallbacks.h modular and move it into __locale/locale_base_api/ 2023-04-21 05:36:41 +02:00
libcxxabi [libc++][PSTL] Remove current integration 2023-04-21 05:31:07 +02:00
libunwind [libunwind] [SEH] Add debug logging in __libunwind_seh_personality 2023-04-19 23:05:48 +03:00
lld [lld-macho] Tweak the names we give to archive members 2023-04-20 17:24:06 -04:00
lldb [lldb] Fix -Wctad-maybe-unsupported in PathMappingList.cpp (NFC) 2023-04-21 11:59:38 +08:00
llvm [AMDGPU] Avoid using tuple where pair does suffice 2023-04-21 08:30:35 +01:00
llvm-libgcc Revert "Revert "Revert "[CMake] Bumps minimum version to 3.20.0.""" 2023-04-15 20:12:24 +02:00
mlir Revert "Fix handling of special and large vals in expand pattern for round" and "Add pattern that expands math.roundeven into math.round + arith" 2023-04-21 00:16:32 -06:00
openmp Modify test to explicitely use the size of the mapped array. 2023-04-20 16:03:57 -04:00
polly Revert "Revert "Revert "[CMake] Bumps minimum version to 3.20.0.""" 2023-04-15 20:12:24 +02:00
pstl Revert "Revert "Revert "[CMake] Bumps minimum version to 3.20.0.""" 2023-04-15 20:12:24 +02:00
runtimes Revert "Revert "Revert "[CMake] Bumps minimum version to 3.20.0.""" 2023-04-15 20:12:24 +02:00
third-party Remove an extra // in the IWYU pragma for gtest-matchers.h 2023-03-14 13:11:53 +01:00
utils [bazel] Fix the bazel build for the "analysis" target for a443b3d18e. 2023-04-20 09:02:29 +02:00
.arcconfig Add modern arc config for default "onto" branch 2021-02-22 11:58:13 -08:00
.arclint PR46997: don't run clang-format on clang's testcases. 2020-08-04 17:53:25 -07:00
.clang-format
.clang-tidy
.git-blame-ignore-revs
.gitignore
.mailmap Fix incorrect .mailmap entry 2023-03-27 14:02:10 -07:00
CONTRIBUTING.md Added instruction to join the llvm discourse and discord group. 2023-03-27 17:02:07 -07:00
LICENSE.TXT
README.md
SECURITY.md

The LLVM Compiler Infrastructure

Welcome to the LLVM project!

This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.

The LLVM project has multiple components. The core of the project is itself called "LLVM". This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.

C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.

Other components include: the libc++ C++ standard library, the LLD linker, and more.

Getting the Source Code and Building LLVM

Consult the Getting Started with LLVM page for information on building and running LLVM.

For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.

Getting in touch

Join the LLVM Discourse forums, Discord chat, or #llvm IRC channel on OFTC.

The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.