blob: 01f7bdf0cf94b49801c0a2058b2b18688655d84d [file] [log] [blame] [edit]
// RUN: %clang_cc1 -fsyntax-only -Wno-all -Wunsafe-buffer-usage -verify %s -std=c++20
// RUN: %clang_cc1 -fsyntax-only -Wno-all -Wunsafe-buffer-usage -verify %s -x c
// expected-no-diagnostics
typedef struct {} FILE;
int fprintf( FILE* stream, const char* format, ... );
FILE * stderr;
#define DEBUG_ASSERT_MESSAGE(name, assertion, label, message, file, line, value) \
fprintf(stderr, "AssertMacros: %s, %s file: %s, line: %d, value: %lld\n", \
assertion, (message!=0) ? message : "", file, line, (long long) (value));
#define Require(assertion, exceptionLabel) \
do \
{ \
if ( __builtin_expect(!(assertion), 0) ) { \
DEBUG_ASSERT_MESSAGE( \
"DEBUG_ASSERT_COMPONENT_NAME_STRING", \
#assertion, #exceptionLabel, 0, __FILE__, __LINE__, 0); \
goto exceptionLabel; \
} \
} while ( 0 )
void f(int x, int y) {
Require(x == y, L1);
L1:
return;
}
// Test that the analysis will not crash when a conditional expression
// appears in dependent context:
#ifdef __cplusplus
struct Foo {
static void static_method(int);
};
void conditional_inside_dependent_context(void) {
auto lambda = [](auto result) { // opens a dependent context
Foo::static_method(result ? 1 : 2); // no-crash
};
(void)lambda;
}
#endif // __cplusplus