swr: [rasterizer jitter] fix llvm-5.0.0 build bustage
Add CreateAlignmentAssumptionHelper to gen_llvm_ir_macros.py ignore list. Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
parent
d1032a047b
commit
79d92a72d5
1 changed files with 3 additions and 4 deletions
|
|
@ -140,10 +140,9 @@ def parse_ir_builder(input_file):
|
|||
ignore = False
|
||||
|
||||
# The following functions need to be ignored.
|
||||
if func_name == 'CreateInsertNUWNSWBinOp':
|
||||
ignore = True
|
||||
|
||||
if func_name == 'CreateMaskedIntrinsic':
|
||||
if (func_name == 'CreateInsertNUWNSWBinOp' or
|
||||
func_name == 'CreateMaskedIntrinsic' or
|
||||
func_name == 'CreateAlignmentAssumptionHelper'):
|
||||
ignore = True
|
||||
|
||||
# Convert CamelCase to CAMEL_CASE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue