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.
13 lines
459 B
13 lines
459 B
; RUN: llvm-dis < %s.bc | FileCheck %s
|
|
|
|
; Bitcode compatibility test for 'dynamic' parameter to llvm.objectsize.
|
|
|
|
define void @callit(i8* %ptr) {
|
|
%sz = call i64 @llvm.objectsize.i64.p0i8(i8* %ptr, i1 false, i1 true)
|
|
; CHECK: %sz = call i64 @llvm.objectsize.i64.p0i8(i8* %ptr, i1 false, i1 true, i1 false)
|
|
ret void
|
|
}
|
|
|
|
declare i64 @llvm.objectsize.i64.p0i8(i8*, i1, i1)
|
|
; CHECK: declare i64 @llvm.objectsize.i64.p0i8(i8*, i1 immarg, i1 immarg, i1 immarg)
|