blob: bc79f859053c0cb12290f1102d11d76179e16267 [file] [log] [blame]
Anna Zaks2a6e30d2012-05-02 00:05:23 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix -verify %s
2
3// Testing core functionality of the SValBuilder.
4
5int SValBuilderLogicNoCrash(int *x) {
6 return 3 - (int)(x +3);
7}