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.
16 lines
610 B
16 lines
610 B
; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
; Check that remangling code doesn't fail on an intrinsic with wrong signature
|
|
|
|
; CHECK: Attribute after last parameter!
|
|
; CHECK-NEXT: void (i8*, i8, i64)* @llvm.memset.i64
|
|
declare void @llvm.memset.i64(i8* nocapture, i8, i64) nounwind
|
|
|
|
; CHECK: Attribute after last parameter!
|
|
; CHECK-NEXT: void (i8*, i8, i64)* @llvm.memcpy.i64
|
|
declare void @llvm.memcpy.i64(i8* nocapture, i8, i64) nounwind
|
|
|
|
; CHECK: Attribute after last parameter!
|
|
; CHECK-NEXT: void (i8*, i8, i64)* @llvm.memmove.i64
|
|
declare void @llvm.memmove.i64(i8* nocapture, i8, i64) nounwind
|