From d00d2feab2ddb3d0c89f6ca20c0a04216ddc77e9 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 13 Mar 2009 23:54:51 +0000 Subject: [PATCH] Add a few more ptrtoint/inttoptr cast tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66989 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/fast-isel.ll | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/X86/fast-isel.ll b/test/CodeGen/X86/fast-isel.ll index cd1e516ac89..2ee2c835b1a 100644 --- a/test/CodeGen/X86/fast-isel.ll +++ b/test/CodeGen/X86/fast-isel.ll @@ -48,11 +48,19 @@ entry: ret i32 %tmp2 } -define i1 @ptrtoint(i8* %p) nounwind { +define i1 @ptrtoint_i1(i8* %p) nounwind { %t = ptrtoint i8* %p to i1 ret i1 %t } -define i8* @inttoptr(i1 %p) nounwind { +define i8* @inttoptr_i1(i1 %p) nounwind { %t = inttoptr i1 %p to i8* ret i8* %t } +define i32 @ptrtoint_i32(i8* %p) nounwind { + %t = ptrtoint i8* %p to i32 + ret i32 %t +} +define i8* @inttoptr_i32(i32 %p) nounwind { + %t = inttoptr i32 %p to i8* + ret i8* %t +} -- 2.11.0