diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-15 07:55:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-15 07:55:43 +0000 |
commit | a4c096d6719bf63fd40721efb7d116cc70c8735e (patch) | |
tree | 1dc829cc936be250b76bd948da6cdf774da76d5a /test/ExecutionEngine/test-cast.ll | |
parent | 4d0a82da2daab7bd4eb3b3cd7ea28ba15d0db144 (diff) |
New testcase for bool support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/test-cast.ll')
-rw-r--r-- | test/ExecutionEngine/test-cast.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-cast.ll b/test/ExecutionEngine/test-cast.ll new file mode 100644 index 0000000000..4ae8a4df16 --- /dev/null +++ b/test/ExecutionEngine/test-cast.ll @@ -0,0 +1,7 @@ + +int %main() { + cast bool true to int + cast int 6 to bool + + ret int 0 +} |