diff options
-rw-r--r-- | test/ExecutionEngine/test-branch.ll | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-branch.ll b/test/ExecutionEngine/test-branch.ll index abbb7d30a9..d209e0b2f9 100644 --- a/test/ExecutionEngine/test-branch.ll +++ b/test/ExecutionEngine/test-branch.ll @@ -2,5 +2,8 @@ void %main() { br label %Test Test: + %X = seteq int 0, 4 + br bool %X, label %Test, label %Label +Label: ret void } |