summaryrefslogtreecommitdiffstats
path: root/test/Analysis/castexpr-callback.c
blob: 3b46093db9aebb782b1fe85b067354645490a7c0 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_analyze_cc1 -analyzer-checker=debug.AnalysisOrder -analyzer-config debug.AnalysisOrder:PreStmtCastExpr=true,debug.AnalysisOrder:PostStmtCastExpr=true %s 2>&1 | FileCheck %s

void test(char c) {
  int i = (int)c;
}

// CHECK: PreStmt<CastExpr> (Kind : LValueToRValue)
// CHECK-NEXT: PostStmt<CastExpr> (Kind : LValueToRValue)
// CHECK-NEXT: PreStmt<CastExpr> (Kind : IntegralCast)
// CHECK-NEXT: PostStmt<CastExpr> (Kind : IntegralCast)