[clang] [llvm] [OpenASIP] Update the TCE target defs for OpenASIP 2.2 (PR #176698)

Pekka Jääskeläinen via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 11 04:06:14 PST 2026


pjaaskel wrote:

Do you mean like this:

```patch
diff --git a/llvm/include/llvm/TargetParser/Triple.h b/llvm/include/llvm/TargetParser/Triple.h
index db02dd1b462a..dc91035c580f 100644
--- a/llvm/include/llvm/TargetParser/Triple.h
+++ b/llvm/include/llvm/TargetParser/Triple.h
@@ -83,9 +83,12 @@ public:
     sparcv9,     // Sparcv9: Sparcv9
     sparcel,     // Sparc: (endianness = little). NB: 'Sparcle' is a CPU variant
     systemz,     // SystemZ: s390x
-    tce,         // OpenASIP (http://openasip.org) / big endian 32b targets: tce
-    tcele,       // OpenASIP (http://openasip.org) / little endian 32b targets: tcele
-    tcele64,     // OpenASIP (http://openasip.org) / little endian 64b targets: tcele
+    // OpenASIP (http://openasip.org) / big endian 32b targets: tce
+    tce,
+    // OpenASIP (http://openasip.org) / little endian 32b targets: tcele
+    tcele,
+    // OpenASIP (http://openasip.org) / little endian 64b targets: tcele
+    tcele64,
     thumb,       // Thumb (little endian): thumb, thumbv.*
     thumbeb,     // Thumb (big endian): thumbeb
     x86,         // X86: i[3-9]86
```
Should I move the rest similarly?

https://github.com/llvm/llvm-project/pull/176698


More information about the cfe-commits mailing list