llvm-capstone/clang/test/Analysis/region-store.cpp
George Karpenkov 50339a2e84 Revert "Revert "[analyzer] Quickfix: do not overflow in calculating offset in RegionManager""
This reverts commit c4cc41166d93178a3ddd4b2b5a685cf74a459247.

Revert and fix uninitialized read.

llvm-svn: 326152
2018-02-27 00:05:04 +00:00

29 lines
405 B
C++

// RUN: %clang_analyze_cc1 -analyzer-checker=core,unix -verify %s
// expected-no-diagnostics
class Loc {
int x;
};
class P1 {
public:
Loc l;
void setLoc(Loc L) {
l = L;
}
};
class P2 {
public:
int m;
int accessBase() {
return m;
}
};
class Derived: public P1, public P2 {
};
int radar13445834(Derived *Builder, Loc l) {
Builder->setLoc(l);
return Builder->accessBase();
}