[Lldb-commits] [lldb] [lldb] Make TestBuiltinFormats.py work on arm64e (PR #195163)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Fri May 1 10:34:15 PDT 2026


================
@@ -120,7 +120,7 @@ def test(self):
         self.assertIn("= 0x1p1\n", self.getFormatted("hex float", "2.0"))
         # FIXME: long double not supported.
         # on Darwin arm64, long double is 8 bytes, same as long.
-        if self.getArchitecture() != "arm64":
+        if self.getArchitecture() not in ["arm64", "arm64e"]:
----------------
medismailben wrote:

```suggestion
        if "arm64" not in self.getArchitecture():
```

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


More information about the lldb-commits mailing list