davemgreen wrote:

Hi - I like the change. We have this code in the downstream compiler, which 
also enables this for Armv6, but specifically disables it for v6m and 
v8m.baseline.
```
      if (VersionNum < 6 ||
          Triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v6m ||
          Triple.getSubArch() == 
llvm::Triple::SubArchType::ARMSubArch_v8m_baseline) {
        Features.push_back("+strict-align");
      }
```

I don't have a strong opinion about what happens with ARMv6, but this deserves 
a release note.

https://github.com/llvm/llvm-project/pull/82400
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to