You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
288 B
9 lines
288 B
7 months ago
|
%struct.rtx_def = type { i16, i16 }
|
||
|
|
||
|
define void @bar(%struct.rtx_def* %a, i8 %b, i32 %c) {
|
||
|
call void @llvm.memset.p0struct.rtx_def.i32(%struct.rtx_def* %a, i8 %b, i32 %c, i32 4, i1 true)
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
declare void @llvm.memset.p0struct.rtx_def.i32(%struct.rtx_def*, i8, i32, i32, i1)
|