Fixes <rdar://problem/15584219> and <rdar://problem/12241361>. This change looks large, but all it does is reuse and consolidate the delayed diagnostic logic for deprecation warnings with unavailability warnings. By doing so, it showed various inconsistencies between the diagnostics, which were close, but not consistent. It also revealed some missing "note:"'s in the deprecated diagnostics that were showing up in the unavailable diagnostics, etc. This change also changes the wording of the core deprecation diagnostics. Instead of saying "function has been explicitly marked deprecated" we now saw "'X' has been been explicitly marked deprecated". It turns out providing a bit more context is useful, and often we got the actual term wrong or it was not very precise (e.g., "function" instead of "destructor"). By just saying the name of the thing that is deprecated/deleted/unavailable we define this issue away. This diagnostic can likely be further wordsmithed to be shorter. llvm-svn: 197627
25 lines
1.1 KiB
C++
25 lines
1.1 KiB
C++
// RUN: %clang_cc1 -triple i386-pc-win32 -target-cpu pentium4 \
|
|
// RUN: -fms-extensions -fms-compatibility -fmsc-version=1700 \
|
|
// RUN: -ffreestanding -verify %s
|
|
|
|
// Intrin.h needs size_t, but -ffreestanding prevents us from getting it from
|
|
// stddef.h. Work around it with this typedef.
|
|
typedef __SIZE_TYPE__ size_t;
|
|
|
|
#include <Intrin.h>
|
|
|
|
// Use some C++ to make sure we closed the extern "C" brackets.
|
|
template <typename T>
|
|
void foo(T V) {}
|
|
|
|
void bar() {
|
|
_ReadWriteBarrier(); // expected-warning {{is deprecated: use other intrinsics or C++11 atomics instead}}
|
|
_ReadBarrier(); // expected-warning {{is deprecated: use other intrinsics or C++11 atomics instead}}
|
|
_WriteBarrier(); // expected-warning {{is deprecated: use other intrinsics or C++11 atomics instead}}
|
|
// FIXME: It'd be handy if we didn't have to hardcode the line number in
|
|
// intrin.h.
|
|
// expected-note@Intrin.h:754 {{'_ReadWriteBarrier' has been explicitly marked deprecated here}}
|
|
// expected-note@Intrin.h:759 {{'_ReadBarrier' has been explicitly marked deprecated here}}
|
|
// expected-note@Intrin.h:764 {{'_WriteBarrier' has been explicitly marked deprecated here}}
|
|
}
|