bolt/deps/llvm-18.1.8/clang/test/Analysis/offsetofexpr-callback.c
2025-02-14 19:21:04 +01:00

13 lines
No EOL
382 B
C

// RUN: %clang_analyze_cc1 -analyzer-checker=debug.AnalysisOrder -analyzer-config debug.AnalysisOrder:PreStmtOffsetOfExpr=true,debug.AnalysisOrder:PostStmtOffsetOfExpr=true %s 2>&1 | FileCheck %s
#include "Inputs/system-header-simulator.h"
struct S {
char c;
};
void test(void) {
offsetof(struct S, c);
}
// CHECK: PreStmt<OffsetOfExpr>
// CHECK-NEXT: PostStmt<OffsetOfExpr>