From 97c6c7461bd01b08c5c9faf40f18fc3447977afc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 15 Dec 2002 07:55:43 +0000 Subject: [PATCH] New testcase for bool support llvm-svn: 5031 --- llvm/test/Regression/Jello/test-cast.ll | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 llvm/test/Regression/Jello/test-cast.ll diff --git a/llvm/test/Regression/Jello/test-cast.ll b/llvm/test/Regression/Jello/test-cast.ll new file mode 100644 index 000000000000..4ae8a4df16db --- /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 +}