[PATCH] D60474: [llvm] [lit] Add target-x86 feature

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 9 23:41:39 PDT 2019


craig.topper added inline comments.


================
Comment at: llvm/utils/lit/lit/llvm/config.py:100
+            # target is using x86 family processor (32- or 64-bit)
+            if re.match(r'^x86.*', target_triple):
+                features.add('target-x86')
----------------
Don't 32-bit x86 triples use i386 or i686 rather than "x86"?


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D60474/new/

https://reviews.llvm.org/D60474





More information about the llvm-commits mailing list