Add -no-integrated-as at local level.

Later we will enable integrated-as as default at the global level.

BUG: 17820427

Change-Id: I6d7c28c7188deab5d507cb6836adac460e0affe7
diff --git a/cpu_ref/Android.mk b/cpu_ref/Android.mk
index ebfe6a8..b0d1f05 100644
--- a/cpu_ref/Android.mk
+++ b/cpu_ref/Android.mk
@@ -52,6 +52,9 @@
     rsCpuIntrinsics_advsimd_YuvToRGB.S
 #    rsCpuIntrinsics_advsimd_Blend.S \
 
+# Clang does not compile rsCpuIntrinsics_advsimd_3DLUT.S.
+LOCAL_CLANG_ASFLAGS_arm64 += -no-integrated-as
+
 ifeq ($(ARCH_ARM_HAVE_NEON),true)
     LOCAL_CFLAGS_arm += -DARCH_ARM_HAVE_NEON
 endif
@@ -69,6 +72,8 @@
     vp9_loopfilter_neon.S \
     vp9_mb_lpf_neon.S
     LOCAL_ASFLAGS_arm := -mfpu=neon
+    # Clang does not compile rsCpuIntrinsics_neon_3DLUT.S.
+    LOCAL_CLANG_ASFLAGS_arm += -no-integrated-as
 endif
 
 ifeq ($(ARCH_X86_HAVE_SSSE3),true)