projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc82fab
)
Move pr717 to here.
author
Chris Lattner
<sabre@nondot.org>
Sun, 2 Mar 2008 02:51:40 +0000
(
02:51
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Sun, 2 Mar 2008 02:51:40 +0000
(
02:51
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47803
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/README.txt
patch
|
blob
|
history
diff --git
a/lib/Target/README.txt
b/lib/Target/README.txt
index 69359dda86407ab3a327c03e4e426fe5597e6932..80b00377ae71486baa1820baac2e001be1a3f1f9 100644
(file)
--- a/
lib/Target/README.txt
+++ b/
lib/Target/README.txt
@@
-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;
+}
+
+//===---------------------------------------------------------------------===//