forked from OSchip/llvm-project
Try to fix buildbots after d3205bbca3
This commit is contained in:
parent
878b526409
commit
4afa077899
|
@ -2397,12 +2397,12 @@ define void @test_sideeffect() {
|
|||
ret void
|
||||
}
|
||||
|
||||
declare void @llvm.var.annotation(i8*, i8*, i8*, i32)
|
||||
declare void @llvm.var.annotation(i8*, i8*, i8*, i32, i8*)
|
||||
define void @test_var_annotation(i8*, i8*, i8*, i32) {
|
||||
; CHECK-LABEL: name: test_var_annotation
|
||||
; CHECK-NOT: llvm.var.annotation
|
||||
; CHECK: RET_ReallyLR
|
||||
call void @llvm.var.annotation(i8* %0, i8* %1, i8* %2, i32 %3)
|
||||
call void @llvm.var.annotation(i8* %0, i8* %1, i8* %2, i32 %3, i8* null)
|
||||
ret void
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ define i8* @ptr_annotate(i8* %arg0, i8* %arg1, i8* %arg2, i32 %arg3) {
|
|||
; CHECK: [[COPY4:%[0-9]+]]:_(p0) = COPY [[COPY]](p0)
|
||||
; CHECK: $x0 = COPY [[COPY4]](p0)
|
||||
; CHECK: RET_ReallyLR implicit $x0
|
||||
%call = call i8* @llvm.ptr.annotation.p0i8(i8* %arg0, i8* %arg1, i8* %arg2, i32 %arg3)
|
||||
%call = call i8* @llvm.ptr.annotation.p0i8(i8* %arg0, i8* %arg1, i8* %arg2, i32 %arg3, i8* null)
|
||||
ret i8* %call
|
||||
}
|
||||
|
||||
|
@ -68,7 +68,7 @@ define i8* @strip_invariant_group(i8* %p) {
|
|||
}
|
||||
|
||||
declare i64 @llvm.expect.i64(i64, i64) #0
|
||||
declare i8* @llvm.ptr.annotation.p0i8(i8*, i8*, i8*, i32) #1
|
||||
declare i8* @llvm.ptr.annotation.p0i8(i8*, i8*, i8*, i32, i8*) #1
|
||||
declare i32 @llvm.annotation.i32(i32, i8*, i8*, i32) #1
|
||||
declare i8* @llvm.launder.invariant.group.p0i8(i8*) #2
|
||||
declare i8* @llvm.strip.invariant.group.p0i8(i8*) #3
|
||||
|
|
Loading…
Reference in New Issue