diff options
author | Alexey Samsonov <samsonov@google.com> | 2014-03-20 10:48:29 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2014-03-20 10:48:29 +0000 |
commit | cb3f812b6b9fab8f3b41414f24e90222170417b4 (patch) | |
tree | ac02f7f09fed1a8d527c8ff2c3998219048fa819 /clang/test/CodeGen/tbaa-for-vptr.cpp | |
parent | a0f5328984de79fba24ec55cd1cc3fcc3eb98cfa (diff) | |
download | bcm5719-llvm-cb3f812b6b9fab8f3b41414f24e90222170417b4.tar.gz bcm5719-llvm-cb3f812b6b9fab8f3b41414f24e90222170417b4.zip |
Kill -faddress-sanitizer, -fthread-sanitizer and -fcatch-undefined-behavior flags.
These flags are deprecated since at least Clang 3.3. Users should instead
use -fsanitize= with appropriate values.
llvm-svn: 204330
Diffstat (limited to 'clang/test/CodeGen/tbaa-for-vptr.cpp')
-rw-r--r-- | clang/test/CodeGen/tbaa-for-vptr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/tbaa-for-vptr.cpp b/clang/test/CodeGen/tbaa-for-vptr.cpp index ea51b63258c..ded574ea937 100644 --- a/clang/test/CodeGen/tbaa-for-vptr.cpp +++ b/clang/test/CodeGen/tbaa-for-vptr.cpp @@ -6,7 +6,7 @@ // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - -O2 -relaxed-aliasing %s | FileCheck %s --check-prefix=NOTBAA // // Check that we generate TBAA for vtable pointer loads and stores. -// When -fthread-sanitizer is used TBAA should be generated at all opt levels +// When -fsanitize=thread is used TBAA should be generated at all opt levels // even if -relaxed-aliasing is present. struct A { virtual int foo() const ; |