Test case for PR7763.

llvm-svn: 109895
This commit is contained in:
Tom Care 2010-07-30 21:42:31 +00:00
parent e7b3e177c4
commit fe1a4944b1
1 changed files with 14 additions and 0 deletions

View File

@ -56,3 +56,17 @@ void floats(float x) {
test_f(x * 1.0); // no-warning
test_f(x * 1.0F); // no-warning
}
// Ensure that we don't report false poitives on complex loops
void bailout() {
int unused, result = 4;
int numbers[5] = { 0, 32, 'x', 128, 255 };
for (int bg = 0; bg < 5; bg ++) {
result += numbers[bg]; // no-warning
for (int i = 0; i < 256; i++) {
unused = i;
}
}
}