diff options
author | Alexander Potapenko <glider@google.com> | 2012-05-25 15:56:40 +0000 |
---|---|---|
committer | Alexander Potapenko <glider@google.com> | 2012-05-25 15:56:40 +0000 |
commit | f2981f3bfdc7900784d446d2dde96d99fbcad756 (patch) | |
tree | dc67a24f6f1c4c35c8592344ec223bed49c166c3 /lib/asan | |
parent | fca72fd2741372d2e947366277258bff1092e73e (diff) | |
download | compiler-rt-f2981f3bfdc7900784d446d2dde96d99fbcad756.tar.gz |
Typo fix.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@157477 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan')
-rw-r--r-- | lib/asan/asan_rtl.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/asan/asan_rtl.cc b/lib/asan/asan_rtl.cc index ac4c1ea04..bf4093360 100644 --- a/lib/asan/asan_rtl.cc +++ b/lib/asan/asan_rtl.cc @@ -479,13 +479,12 @@ void __asan_init() { // flags const char *options = AsanGetEnv("ASAN_OPTIONS"); + ParseAsanOptions(options); if (FLAG_v) { Report("Parsed ASAN_OPTIONS: %s\n", options); } - ParseAsanOptions(options); - if (FLAG_atexit) { Atexit(asan_atexit); } |