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:
a512450
)
Return 'int 0' instead of void so that the test can be considered to pass.
author
Misha Brukman
<brukman+llvm@gmail.com>
Fri, 6 Jun 2003 07:58:29 +0000
(07:58 +0000)
committer
Misha Brukman
<brukman+llvm@gmail.com>
Fri, 6 Jun 2003 07:58:29 +0000
(07:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6653
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/ExecutionEngine/test-branch.ll
patch
|
blob
|
history
diff --git
a/test/ExecutionEngine/test-branch.ll
b/test/ExecutionEngine/test-branch.ll
index d209e0b2f9809623dafea57bb84ab64ac1743391..d3559d8c7511d2dfb7e1c1b3be0ae9ce8f7b51ff 100644
(file)
--- a/
test/ExecutionEngine/test-branch.ll
+++ b/
test/ExecutionEngine/test-branch.ll
@@
-1,9
+1,9
@@
; test unconditional branch
-
void
%main() {
+
int
%main() {
br label %Test
Test:
%X = seteq int 0, 4
br bool %X, label %Test, label %Label
Label:
- ret
void
+ ret
int 0
}