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
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to