search for: 4dc7d9e7

Displaying 2 results from an estimated 2 matches for "4dc7d9e7".

2013 Jun 10
3
[LLVMdev] [PATCH] Add host feature detection for Qualcomm CPUs
Hi, I would like to add host feature detection for Qualcomm CPUs. The implementation models the feature detection for ARM CPUs. Is this OK to commit? Thanks, Tobi -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130610/caeabd25/attachment.html> -------------- next part -------------- A non-text
2013 Jun 10
0
[LLVMdev] [PATCH] Add host feature detection for Qualcomm CPUs
Hi Tobi, [cc llvm-commits] I don't understand why you need to replicate all that - why can't you just change: if (Implementer == "0x41") // ARM Ltd. To: if (Implementer == "0x41" || Implementer == "0x31") ? It looks like the feature strings will be the same - and in fact we grabbed them straight from the Linux kernel source which returns the same