if (Ex) {
OS << "The " << (isLeft ? "left" : "right")
- << " operand of the '"
+ << " operand of '"
<< BinaryOperator::getOpcodeStr(B->getOpcode())
- << "' expression is a garbage value";
+ << "' is a garbage value";
}
else {
// Neither operand was undefined, but the result is undefined.
struct TestUninit v2 = test_uninit_aux();
int z;
v1.y = z;
- test_unit_aux2(v2.x + v1.y); // expected-warning{{The right operand of the '+' expression is a garbage value}}
+ test_unit_aux2(v2.x + v1.y); // expected-warning{{The right operand of '+' is a garbage value}}
}
void test_uninit_neg() {
struct TestUninit v1 = { 0, 0 };
int x;
- if (x+1) // expected-warning{{The left operand of the '+' expression is a garbage value}}
+ if (x+1) // expected-warning{{The left operand of '+' is a garbage value}}
return 1;
return 2;
int f2_b() {
int x;
- return ((1+x)+2+((x))) + 1 ? 1 : 2; // expected-warning{{The right operand of the '+' expression is a garbage value}}
+ return ((1+x)+2+((x))) + 1 ? 1 : 2; // expected-warning{{The right operand of '+' is a garbage value}}
}
int f3(void) {
int i;
int *p = &i;
- if (*p > 0) // expected-warning{{The left operand of the '>' expression is a garbage value}}
+ if (*p > 0) // expected-warning{{The left operand of '>' is a garbage value}}
return 0;
else
return 1;