diff options
author | Serge Rogatch <srogatch@accesssoftek.com> | 2016-12-22 18:48:36 +0000 |
---|---|---|
committer | Serge Rogatch <srogatch@accesssoftek.com> | 2016-12-22 18:48:36 +0000 |
commit | 93fb15788ae42bd3deab70d7eba47fd784991b6f (patch) | |
tree | 25c27e93262532b999d260874e2e64c0631f6698 /compiler-rt/test/xray | |
parent | 48badd66aeed20d0a52412b87e5f6856493f4a3a (diff) | |
download | bcm5719-llvm-93fb15788ae42bd3deab70d7eba47fd784991b6f.tar.gz bcm5719-llvm-93fb15788ae42bd3deab70d7eba47fd784991b6f.zip |
[XRay][AArch64] An attempt to fix test patching-unpatching.cc by flushing the instruction cache after code modification
Summary: This patch attempts to fix test patching-unpatching.cc . The new code flushes the instruction cache after modifying the program at runtime.
Reviewers: dberris, rengolin
Subscribers: llvm-commits, iid_iunknown, aemerson
Differential Revision: https://reviews.llvm.org/D27996
llvm-svn: 290354
Diffstat (limited to 'compiler-rt/test/xray')
-rw-r--r-- | compiler-rt/test/xray/TestCases/Linux/patching-unpatching.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler-rt/test/xray/TestCases/Linux/patching-unpatching.cc b/compiler-rt/test/xray/TestCases/Linux/patching-unpatching.cc index e684e427f06..05478a48805 100644 --- a/compiler-rt/test/xray/TestCases/Linux/patching-unpatching.cc +++ b/compiler-rt/test/xray/TestCases/Linux/patching-unpatching.cc @@ -3,7 +3,6 @@ // // RUN: %clangxx_xray -fxray-instrument -std=c++11 %s -o %t // RUN: XRAY_OPTIONS="patch_premain=false" %run %t 2>&1 | FileCheck %s -// REQUIRES: stable-runtime #include "xray/xray_interface.h" |