mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Move pr717 to here.
llvm-svn: 47803
This commit is contained in:
parent
b02fe64d8b
commit
38a684c0c9
@ -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;
|
||||
}
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
Loading…
Reference in New Issue
Block a user