blob: 0e4ad7c083c1195409766ac0a4d8921076029e02 [file] [log] [blame] [edit]
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
declare void @func()
; CHECK: denormal_fpenv attribute may not apply to call sites
; CHECK-NEXT: call void @func() #0
define void @no_callsites() {
call void @func() denormal_fpenv(preservesign)
ret void
}