Follow up of https://reviews.llvm.org/D63723,
there are two other duplicate entries that can be dropped.
Details
Diff Detail
Event Timeline
llvm/utils/UpdateTestChecks/asm.py | ||
---|---|---|
293 | Is x86 a real triple? |
llvm/utils/UpdateTestChecks/asm.py | ||
---|---|---|
293 | Good question. However, in this script, we will return x86 in get_triple_from_march for unsupported -march when there is not triple specified in IR or command line. So x86 is a valid entry here. | |
294 | Since x86 is not a real triple, we are actually missing support for i486, i586,... There is only one i586 triple case found in current LLVM test. |
Is x86 a real triple?
I've never seen it used.