https://llvm.org/bugs/show_bug.cgi?id=29075
Bug ID: 29075
Summary: -Wsometimes-uninitialized false-positive with switch()
default:
Product: clang
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: Frontend
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
Classification: Unclassified
Created attachment 17017
--> https://llvm.org/bugs/attachment.cgi?id=17017&action=edit
Reduced testcase
Reduced from babl:
int x0;
void x1() {
int x2;
switch (x0) {
case 0:
x2 = 0;
default:;
}
x2 /= 1;
}
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs