summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2016-03-22 00:34:53 +0000
committerReid Kleckner <rnk@google.com>2016-03-22 00:34:53 +0000
commit79d2451cd7e3705547b23d47990c74ce1d594079 (patch)
tree411bbcdacb1d2623365c4b11b470fbdfd4e090b6
parentc35d402aeb5736ebd3ce003861a006048a84810e (diff)
downloadbcm5719-llvm-79d2451cd7e3705547b23d47990c74ce1d594079.tar.gz
bcm5719-llvm-79d2451cd7e3705547b23d47990c74ce1d594079.zip
[asan] Also apply r264006 to asan_win_dynamic_runtime_thunk.cc
llvm-svn: 264011
-rw-r--r--compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc b/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
index 73e5207bb33..6685b8f30e1 100644
--- a/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
+++ b/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
@@ -29,7 +29,7 @@
// First, declare CRT sections we'll be using in this file
#pragma section(".CRT$XID", long, read) // NOLINT
-#pragma section(".CRT$XIZ", long, read) // NOLINT
+#pragma section(".CRT$XCAB", long, read) // NOLINT
#pragma section(".CRT$XTW", long, read) // NOLINT
#pragma section(".CRT$XTY", long, read) // NOLINT
@@ -93,7 +93,7 @@ static int SetSEHFilter() { return __asan_set_seh_filter(); }
// Unfortunately, putting a pointer to __asan_set_seh_filter into
// __asan_intercept_seh gets optimized out, so we have to use an extra function.
-__declspec(allocate(".CRT$XIZ")) int (*__asan_seh_interceptor)() = SetSEHFilter;
+__declspec(allocate(".CRT$XCAB")) int (*__asan_seh_interceptor)() = SetSEHFilter;
}
#endif // ASAN_DYNAMIC_RUNTIME_THUNK
OpenPOWER on IntegriCloud