Zhongxing Xu | f9d3cbb | 2011-01-10 03:54:19 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store=region -verify %s |
2 | |||||
3 | int f1() { | ||||
4 | int x = 0, y = 1; | ||||
5 | return x += y; // Should bind a location to 'x += y'. No crash. | ||||
6 | } |