mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 20:08:06 +02:00
swr/rast: ignore CreateElementUnorderedAtomicMemCpy
This function's API changed between LLVM 5 and 6. Compile errors occur
when building with LLVM 6+ if LLVM 5 was used for a dist tarball
CC: <mesa-stable@lists.freedesktop.org>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107865
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
(cherry picked from commit edf38019a0)
This commit is contained in:
parent
63f01f2ef7
commit
58df8607cd
1 changed files with 2 additions and 1 deletions
|
|
@ -161,7 +161,8 @@ def parse_ir_builder(input_file):
|
|||
func_name == 'CreateAlignmentAssumptionHelper' or
|
||||
func_name == 'CreateGEP' or
|
||||
func_name == 'CreateLoad' or
|
||||
func_name == 'CreateMaskedLoad'):
|
||||
func_name == 'CreateMaskedLoad' or
|
||||
func_name == 'CreateElementUnorderedAtomicMemCpy'):
|
||||
ignore = True
|
||||
|
||||
# Convert CamelCase to CAMEL_CASE
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue