From 7e7f06e70a07be4a5fad81883da6bebf33e1b3f6 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 27 Aug 2009 00:31:47 +0000 Subject: X86FastISel support for loading and storing values of type i1. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80186 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/fast-isel.ll | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/CodeGen/X86/fast-isel.ll') diff --git a/test/CodeGen/X86/fast-isel.ll b/test/CodeGen/X86/fast-isel.ll index a9a016b7d0..8d6ddb4dbe 100644 --- a/test/CodeGen/X86/fast-isel.ll +++ b/test/CodeGen/X86/fast-isel.ll @@ -64,3 +64,12 @@ define i8* @inttoptr_i32(i32 %p) nounwind { %t = inttoptr i32 %p to i8* ret i8* %t } + +define void @store_i1(i1* %p, i1 %t) nounwind { + store i1 %t, i1* %p + ret void +} +define i1 @load_i1(i1* %p) nounwind { + %t = load i1* %p + ret i1 %t +} -- cgit v1.2.3