commit | 493a7fc5c301faca1f5cd042c5f546bd008c282e | [log] [tgz] |
---|---|---|
author | Rafael Espindola <rafael.espindola@gmail.com> | Tue Oct 10 20:38:57 2006 +0000 |
committer | Rafael Espindola <rafael.espindola@gmail.com> | Tue Oct 10 20:38:57 2006 +0000 |
tree | df64f8f62f31413801d8e5706f2c910f9142cb9c | |
parent | 45aeccc1fda9e0938c38f554c002c6950bd92500 [diff] [blame] |
uint <-> double conversion git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30862 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/ARM/fpconv.ll b/test/CodeGen/ARM/fpconv.ll index c20cf62..863c2e9 100644 --- a/test/CodeGen/ARM/fpconv.ll +++ b/test/CodeGen/ARM/fpconv.ll
@@ -25,3 +25,15 @@ %tmp = cast double %x to int ret int %tmp } + +uint %f5(float %x) { +entry: + %tmp = cast float %x to uint + ret uint %tmp +} + +uint %f6(double %x) { +entry: + %tmp = cast double %x to uint + ret uint %tmp +}