aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/offsetofexpr-callback.c
blob: 9376a98f4846b0a85db0ac8098c36685a31e4e2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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>