forked from OSchip/llvm-project
16 lines
327 B
C
16 lines
327 B
C
// RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-dump-egraph=%t.dot %s
|
|
// RUN: cat %t.dot | FileCheck %s
|
|
// REQUIRES: asserts
|
|
|
|
int getJ();
|
|
|
|
int foo() {
|
|
int *x = 0, *y = 0;
|
|
return *x + *y;
|
|
}
|
|
|
|
// CHECK: digraph "Exploded Graph" {
|
|
// CHECK: Edge: (B2, B1)
|
|
// CHECK: Block Entrance: B1
|
|
// CHECK: Bug report attached
|