We currently don't use these instructions, and since their API changed in llvm-5.0 having them in the autogen files broke the mesa release tarballs which ship with generated autogen files. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=102847 CC: mesa-stable@lists.freedesktop.org Tested-by: Laurent Carlier <lordheavym@gmail.com> Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>tags/17.3-branchpoint
| @@ -140,6 +140,14 @@ def parse_ir_builder(input_file): | |||
| ignore = False | |||
| # The following functions need to be ignored in openswr. | |||
| # API change in llvm-5.0 breaks baked autogen files | |||
| if ( | |||
| (func_name == 'CreateFence' or | |||
| func_name == 'CreateAtomicCmpXchg' or | |||
| func_name == 'CreateAtomicRMW')): | |||
| ignore = True | |||
| # The following functions need to be ignored. | |||
| if (func_name == 'CreateInsertNUWNSWBinOp' or | |||
| func_name == 'CreateMaskedIntrinsic' or | |||