================ @@ -67,8 +67,12 @@ XRayArgs::XRayArgs(const ToolChain &TC, const ArgList &Args) { false)) { XRayShared = true; - // DSO instrumentation is currently limited to x86_64 - if (Triple.getArch() != llvm::Triple::x86_64) { + // DSO instrumentation is currently limited to x86_64 and aarch64 + switch (Triple.getArch()) { + case llvm::Triple::x86_64: ---------------- MaskRay wrote:
place aarch64 before x86_64 https://github.com/llvm/llvm-project/pull/114431 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits