http://llvm.org/bugs/show_bug.cgi?id=8586
Summary: Missing PRE
Product: new-bugs
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: quality-of-implementation
Severity: normal
Priority: P
Component: new bugs
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected], [email protected]
int a[100];
int foo(int x, int* y, int z)
{
int m;
if (x)
{
// *y = z;
a[x] = z;
}
m = *y;
return m + a[x]; // <-- a[x] here is not PREed by LLVM.
}
David
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs