From 8b37c1c71bf66274251db35b742f8f4013be2f52 Mon Sep 17 00:00:00 2001 From: Ikhlas Ajbar Date: Fri, 20 Dec 2024 14:01:58 -0600 Subject: [Hexagon] Add V75 support to compiler and assembler (#120773) This patch introduces support for the Hexagon V75 architecture. It includes instruction formats, definitions, encodings, scheduling classes, and builtins/intrinsics. --- llvm/lib/Object/ELFObjectFile.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'llvm/lib/Object/ELFObjectFile.cpp') diff --git a/llvm/lib/Object/ELFObjectFile.cpp b/llvm/lib/Object/ELFObjectFile.cpp index 76415ae..1ddfada 100644 --- a/llvm/lib/Object/ELFObjectFile.cpp +++ b/llvm/lib/Object/ELFObjectFile.cpp @@ -309,6 +309,8 @@ static std::optional hexagonAttrToFeatureString(unsigned Attr) { return "v71"; case 73: return "v73"; + case 75: + return "v75"; default: return {}; } -- cgit v1.1