commit | c24890305378979a66ea6d35bee754c03e61178f | [log] [tgz] |
---|---|---|
author | Shafik Yaghmour <shafik.yaghmour@intel.com> | Tue May 13 09:09:37 2025 -0700 |
committer | GitHub <noreply@github.com> | Tue May 13 09:09:37 2025 -0700 |
tree | d759cc5c91393f2066b6e89bb5759f3fdb83b02a | |
parent | 7a4af40896496064ed34f89bb6a30fc91c3c2f7a [diff] |
[OpenMP][NFC] Use pass by const ref for Dependencies (#139592) Static analysis flagged the passing of Dependencies to emitTargetCall as a place we could use std::move to avoid copying. A closer look indicated we could instead turn the parameter into a const & and not have a default value since it was only used in two lines in a test and changing those two locations was easy.
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.
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.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.