diff options
author | Brian Cain <bcain@quicinc.com> | 2021-12-08 17:57:20 -0800 |
---|---|---|
committer | Brian Cain <bcain@quicinc.com> | 2021-12-10 05:32:28 -0800 |
commit | 1e68c79987a628f2e9c6b3a7416a8308a58eb436 (patch) | |
tree | de22eaa427c5eea13f934057faf6a08477e955a0 /llvm/lib/CodeGen/XRayInstrumentation.cpp | |
parent | 1031e430521407241ca97affc80001af373c2fc5 (diff) | |
download | llvm-1e68c79987a628f2e9c6b3a7416a8308a58eb436.zip llvm-1e68c79987a628f2e9c6b3a7416a8308a58eb436.tar.gz llvm-1e68c79987a628f2e9c6b3a7416a8308a58eb436.tar.bz2 |
Reapply [xray] add support for hexagon
Adds x-ray support for hexagon to llvm codegen, clang driver,
compiler-rt libs.
Differential Revision: https://reviews.llvm.org/D113638
Reapplying this after 543a9ad7c460bb8d641b1b7c67bbc032c9bfdb45,
which fixes the leak introduced there.
Diffstat (limited to 'llvm/lib/CodeGen/XRayInstrumentation.cpp')
-rw-r--r-- | llvm/lib/CodeGen/XRayInstrumentation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/XRayInstrumentation.cpp b/llvm/lib/CodeGen/XRayInstrumentation.cpp index 11d1b30..b66429d 100644 --- a/llvm/lib/CodeGen/XRayInstrumentation.cpp +++ b/llvm/lib/CodeGen/XRayInstrumentation.cpp @@ -226,6 +226,7 @@ bool XRayInstrumentation::runOnMachineFunction(MachineFunction &MF) { case Triple::ArchType::arm: case Triple::ArchType::thumb: case Triple::ArchType::aarch64: + case Triple::ArchType::hexagon: case Triple::ArchType::mips: case Triple::ArchType::mipsel: case Triple::ArchType::mips64: |