b3d2043
--- chromium-124.0.6367.60/third_party/dav1d/libdav1d/src/arm/asm.S	2024-04-15 22:34:36.000000000 +0200
b3d2043
+++ chromium-122.0.6261.128/third_party/dav1d/libdav1d/src/arm/asm.S	2024-03-13 00:38:27.000000000 +0100
b3d2043
@@ -34,50 +34,6 @@
b3d2043
 #define x18 do_not_use_x18
b3d2043
 #define w18 do_not_use_w18
b3d2043
 
b3d2043
-#if HAVE_AS_ARCH_DIRECTIVE
b3d2043
-        .arch AS_ARCH_LEVEL
b3d2043
-#endif
b3d2043
-
b3d2043
-#if HAVE_AS_ARCHEXT_DOTPROD_DIRECTIVE
b3d2043
-#define ENABLE_DOTPROD  .arch_extension dotprod
b3d2043
-#define DISABLE_DOTPROD .arch_extension nodotprod
b3d2043
-#else
b3d2043
-#define ENABLE_DOTPROD
b3d2043
-#define DISABLE_DOTPROD
b3d2043
-#endif
b3d2043
-#if HAVE_AS_ARCHEXT_I8MM_DIRECTIVE
b3d2043
-#define ENABLE_I8MM  .arch_extension i8mm
b3d2043
-#define DISABLE_I8MM .arch_extension noi8mm
b3d2043
-#else
b3d2043
-#define ENABLE_I8MM
b3d2043
-#define DISABLE_I8MM
b3d2043
-#endif
b3d2043
-#if HAVE_AS_ARCHEXT_SVE_DIRECTIVE
b3d2043
-#define ENABLE_SVE  .arch_extension sve
b3d2043
-#define DISABLE_SVE .arch_extension nosve
b3d2043
-#else
b3d2043
-#define ENABLE_SVE
b3d2043
-#define DISABLE_SVE
b3d2043
-#endif
b3d2043
-#if HAVE_AS_ARCHEXT_SVE2_DIRECTIVE
b3d2043
-#define ENABLE_SVE2  .arch_extension sve2
b3d2043
-#define DISABLE_SVE2 .arch_extension nosve2
b3d2043
-#else
b3d2043
-#define ENABLE_SVE2
b3d2043
-#define DISABLE_SVE2
b3d2043
-#endif
b3d2043
-
b3d2043
-/* If we do support the .arch_extension directives, disable support for all
b3d2043
- * the extensions that we may use, in case they were implicitly enabled by
b3d2043
- * the .arch level. This makes it clear if we try to assemble an instruction
b3d2043
- * from an unintended extension set; we only allow assmbling such instructions
b3d2043
- * within regions where we explicitly enable those extensions. */
b3d2043
-DISABLE_DOTPROD
b3d2043
-DISABLE_I8MM
b3d2043
-DISABLE_SVE
b3d2043
-DISABLE_SVE2
b3d2043
-
b3d2043
-
b3d2043
 /* Support macros for
b3d2043
  *   - Armv8.3-A Pointer Authentication and
b3d2043
  *   - Armv8.5-A Branch Target Identification