diff options
author | Qin Zhao <zhaoqin@google.com> | 2016-05-31 17:14:02 +0000 |
---|---|---|
committer | Qin Zhao <zhaoqin@google.com> | 2016-05-31 17:14:02 +0000 |
commit | 1762eef57240d261e0fc0ec7ad64aafc3e1b3fc6 (patch) | |
tree | 72aa156924ec2a1365b109abb955a3e6a9837d8e /llvm/test/Instrumentation/EfficiencySanitizer/cache_frag_basic.ll | |
parent | 6dc455fb93d4fe784119cfb0ec969006575c2799 (diff) | |
download | bcm5719-llvm-1762eef57240d261e0fc0ec7ad64aafc3e1b3fc6.tar.gz bcm5719-llvm-1762eef57240d261e0fc0ec7ad64aafc3e1b3fc6.zip |
[esan|cfrag] Create the skeleton of cfrag variable for the runtime
Summary:
Creates a global variable containing preliminary information
for the cache-fragmentation tool runtime.
Passes a pointer to the variable (null if no variable is created) to the
compilation unit init and exit routines in the runtime.
Reviewers: aizatsky, bruening
Subscribers: filcab, kubabrecka, bruening, kcc, vitalybuka, eugenis, llvm-commits, zhaoqin
Differential Revision: http://reviews.llvm.org/D20541
llvm-svn: 271298
Diffstat (limited to 'llvm/test/Instrumentation/EfficiencySanitizer/cache_frag_basic.ll')
-rw-r--r-- | llvm/test/Instrumentation/EfficiencySanitizer/cache_frag_basic.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Instrumentation/EfficiencySanitizer/cache_frag_basic.ll b/llvm/test/Instrumentation/EfficiencySanitizer/cache_frag_basic.ll index d88bb985d1a..4cd22690cb8 100644 --- a/llvm/test/Instrumentation/EfficiencySanitizer/cache_frag_basic.ll +++ b/llvm/test/Instrumentation/EfficiencySanitizer/cache_frag_basic.ll @@ -254,6 +254,6 @@ entry: ; Top-level: ; CHECK: define internal void @esan.module_ctor() -; CHECK: call void @__esan_init(i32 1, i64 ptrtoint (i64* @0 to i64)) +; CHECK: call void @__esan_init(i32 1, i8* bitcast ({ i8*, i32, { i8*, i32, i64*, i8** }* }* @1 to i8*)) ; CHECK: define internal void @esan.module_dtor() -; CHECK: call void @__esan_exit(i64 ptrtoint (i64* @0 to i64)) +; CHECK: call void @__esan_exit(i8* bitcast ({ i8*, i32, { i8*, i32, i64*, i8** }* }* @1 to i8*)) |