From 3c4dc3d816ac63dc4dc9dd96219ab420ebce4769 Mon Sep 17 00:00:00 2001 From: Julian Lettner Date: Thu, 29 Aug 2019 20:20:05 +0000 Subject: [PATCH] [ASan] Version mismatch check follow-up Follow-up for: [ASan] Make insertion of version mismatch guard configurable 3ae9b9d5e40d1d9bdea1fd8e6fca322df920754a This tiny change makes sure that this test passes on our internal bots as well. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370403 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../AddressSanitizer/version-mismatch-check.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Instrumentation/AddressSanitizer/version-mismatch-check.ll b/test/Instrumentation/AddressSanitizer/version-mismatch-check.ll index e0183d62924..e8f370e398a 100644 --- a/test/Instrumentation/AddressSanitizer/version-mismatch-check.ll +++ b/test/Instrumentation/AddressSanitizer/version-mismatch-check.ll @@ -8,5 +8,5 @@ target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f3 target triple = "x86_64-unknown-linux-gnu" ; CHECK-LABEL: define internal void @asan.module_ctor() -; CHECK: call void @__asan_version_mismatch_check_v -; NOGUARD-NOT: call void @__asan_version_mismatch_check_v +; CHECK: call void @__asan_version_mismatch_check_ +; NOGUARD-NOT: call void @__asan_version_mismatch_check_ -- 2.40.0