Displaying 3 results from an estimated 3 matches for "fail3".
Did you mean:
fail
2009 Nov 20
2
[LLVMdev] llc barfing
...; <i32> [#uses=1]
%7 = icmp slt i32 %1, %6 ; <i1> [#uses=1]
br label %cont
cont: ; preds = %pass2, %fail1
%8 = phi i1 [ %7, %pass2 ], [ false, %fail1 ] ; <i1> [#uses=1]
br i1 %8, label %pass4, label %fail3
fail3: ; preds = %cont
%9 = call i32 (i8*, ...)* @printf(i8* getelementptr ([27 x i8]* @buf10, i32
0, i32 0)) ; <i32> [#uses=0]
call void @exit(i32 1)
br label %cont5
pass4: ; preds = %cont
br lab...
2006 Dec 01
1
[PATCH 2/10] Add support for netfront/netback acceleration drivers
...return 0;
}
diff -r b58bcd6551e2 xen/common/domain.c
--- a/xen/common/domain.c Fri Dec 01 16:21:46 2006 +0000
+++ b/xen/common/domain.c Fri Dec 01 16:22:41 2006 +0000
@@ -160,9 +160,14 @@ struct domain *domain_create(domid_t dom
if ( arch_domain_create(d) != 0 )
goto fail3;
- d->iomem_caps = rangeset_new(d, "I/O Memory",
RANGESETF_prettyprint_hex);
+ d->iomem_caps_readwrite = rangeset_new(d, "I/O Memory RW",
+ RANGESETF_prettyprint_hex);
+ d->iomem_caps_readonly = rangeset_new(d, "...
2013 Sep 23
57
[PATCH RFC v13 00/20] Introduce PVH domU support
This patch series is a reworking of a series developed by Mukesh
Rathor at Oracle. The entirety of the design and development was done
by him; I have only reworked, reorganized, and simplified things in a
way that I think makes more sense. The vast majority of the credit
for this effort therefore goes to him. This version is labelled v13
because it is based on his most recent series, v11.