mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +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>
This commit is contained in:
parent
8c872ac2e3
commit
edf38019a0
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