diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-12 20:39:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-12 20:39:30 +0000 |
commit | 8c1919475f9e35cf5f079e076f52b995638357c2 (patch) | |
tree | 719498ac45ec8819795a8f9c22a57113045d8346 /test/ExecutionEngine | |
parent | 4d5a50a7a6e9db96eb644265181e7ad6a1a9e839 (diff) | |
download | llvm-8c1919475f9e35cf5f079e076f52b995638357c2.tar.gz |
Enable more tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r-- | test/ExecutionEngine/test-cast.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ExecutionEngine/test-cast.ll b/test/ExecutionEngine/test-cast.ll index dbb31ab5fed9..a30fc06322ec 100644 --- a/test/ExecutionEngine/test-cast.ll +++ b/test/ExecutionEngine/test-cast.ll @@ -30,8 +30,8 @@ int %main() { cast short 0 to double ; cast ushort to ... - ;cast ushort 0 to float - ;cast ushort 0 to double + cast ushort 0 to float + cast ushort 0 to double ; cast int to ... cast int 6 to bool @@ -45,8 +45,8 @@ int %main() { ; cast uint to ... cast uint 0 to long cast uint 0 to ulong - ;cast uint 0 to float - ;cast uint 0 to double + cast uint 0 to float + cast uint 0 to double ; cast long to ... cast long 0 to sbyte |