search for: armsubarch_v7k

Displaying 1 result from an estimated 1 matches for "armsubarch_v7k".

Did you mean: armsubarch_v7
2016 Jan 03
2
Diff to add ARMv6L to Target parser
...ch_v7 || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v7em || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v7m || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v7s || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v7k) { triple.setArchName("armv7"); } } return triple; } However, because the DefaultTargetTriple is armv6l-unknown-linux-gnueabihf, and llvm didn’t know about v6l, it would fail to match and canonicalize to armv6. I added the notion of v6l to llvm to address this. Thoughts/c...