Update to a fixed asan_device_setup.

Change is this fix:
https://github.com/llvm-mirror/compiler-rt/commit/bd58cbc2f3708fdd1de35b2d09b4ec648829a9a5.

Without that patch, KitKat devices will not be able to boot because of
selinux denials.

Bug: https://github.com/android-ndk/ndk/issues/6
Change-Id: I3b3c37157516bbb29a06b56d7101514d95ff9c3b
diff --git a/clang-2481030/bin/asan_device_setup b/clang-2481030/bin/asan_device_setup
index 6f038ae..6cb7b94 100755
--- a/clang-2481030/bin/asan_device_setup
+++ b/clang-2481030/bin/asan_device_setup
@@ -281,6 +281,7 @@
   adb_pull /system/bin/asanwrapper64 "$TMPDIROLD" || true
 else
   adb_pull /system/lib/"$ASAN_RT" "$TMPDIROLD" || true
+  adb_pull /system/bin/app_process32 "$TMPDIROLD" || true
   adb_pull /system/bin/app_process.wrap "$TMPDIROLD" || true
   adb_pull /system/bin/asanwrapper "$TMPDIROLD" || true
 fi
@@ -406,6 +407,7 @@
       install "$TMPDIR/asanwrapper64" /system/bin 755
     else
       install "$TMPDIR/$ASAN_RT" /system/lib 644
+      install "$TMPDIR/app_process32" /system/bin 755 $CTX
       install "$TMPDIR/app_process.wrap" /system/bin 755 $CTX
       install "$TMPDIR/asanwrapper" /system/bin 755 $CTX