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 | 97c6c7461bd01b08c5c9faf40f18fc3447977afc (patch) | |
tree | 14649ac50db525edaecfd0d51d63a7df01d0531c | |
parent | 3aa776735251b39d8b5c158c5e8d3363972d5512 (diff) | |
download | bcm5719-llvm-97c6c7461bd01b08c5c9faf40f18fc3447977afc.tar.gz bcm5719-llvm-97c6c7461bd01b08c5c9faf40f18fc3447977afc.zip |
New testcase for bool support
llvm-svn: 5031
-rw-r--r-- | llvm/test/Regression/Jello/test-cast.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/test/Regression/Jello/test-cast.ll b/llvm/test/Regression/Jello/test-cast.ll new file mode 100644 index 00000000000..4ae8a4df16d --- /dev/null +++ b/llvm/test/Regression/Jello/test-cast.ll @@ -0,0 +1,7 @@ + +int %main() { + cast bool true to int + cast int 6 to bool + + ret int 0 +} |