1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Move pr717 to here.

llvm-svn: 47803
This commit is contained in:
Chris Lattner 2008-03-02 02:51:40 +00:00
parent b02fe64d8b
commit 38a684c0c9

View File

@ -691,3 +691,17 @@ instead of:
...
//===---------------------------------------------------------------------===//
http://llvm.org/PR717:
The following code should compile into "ret int undef". Instead, LLVM
produces "ret int 0":
int f() {
int x = 4;
int y;
if (x == 3) y = 0;
return y;
}
//===---------------------------------------------------------------------===//