[PATCH] D27957: [scudo] ARM32 support

Kostya Kortchinsky via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 20 13:28:34 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL290201: [scudo] ARM32 support (authored by cryptoad).

Changed prior to commit:
  https://reviews.llvm.org/D27957?vs=82022&id=82143#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D27957

Files:
  compiler-rt/trunk/cmake/config-ix.cmake
  compiler-rt/trunk/test/scudo/random_shuffle.cpp


Index: compiler-rt/trunk/cmake/config-ix.cmake
===================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake
+++ compiler-rt/trunk/cmake/config-ix.cmake
@@ -172,7 +172,7 @@
 set(ALL_SAFESTACK_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64} ${MIPS32} ${MIPS64})
 set(ALL_CFI_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64})
 set(ALL_ESAN_SUPPORTED_ARCH ${X86_64} ${MIPS64})
-set(ALL_SCUDO_SUPPORTED_ARCH ${X86} ${X86_64})
+set(ALL_SCUDO_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32})
 set(ALL_XRAY_SUPPORTED_ARCH ${X86_64} ${ARM32} ${ARM64})
 
 if(APPLE)
Index: compiler-rt/trunk/test/scudo/random_shuffle.cpp
===================================================================
--- compiler-rt/trunk/test/scudo/random_shuffle.cpp
+++ compiler-rt/trunk/test/scudo/random_shuffle.cpp
@@ -7,7 +7,7 @@
 // RUN: %run %t 10000 > %T/random_shuffle_tmp_dir/out2
 // RUN: not diff %T/random_shuffle_tmp_dir/out?
 // RUN: rm -rf %T/random_shuffle_tmp_dir
-// UNSUPPORTED: i386-linux,i686-linux
+// UNSUPPORTED: i386-linux,i686-linux,arm-linux,armhf-linux
 
 // Tests that the allocator shuffles the chunks before returning to the user.
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27957.82143.patch
Type: text/x-patch
Size: 1159 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161220/19d4bab8/attachment.bin>


More information about the llvm-commits mailing list