1; RUN: llc < %s -o - | FileCheck %s
2
3; CHECK: sinl
4
5target triple = "i686-pc-linux-gnu"
6
7define x86_fp80 @f(x86_fp80 %x) nounwind  {
8entry:
9	%tmp2 = tail call x86_fp80 @sinl( x86_fp80 %x ) nounwind readonly 		; <x86_fp80> [#uses=1]
10	ret x86_fp80 %tmp2
11}
12
13declare x86_fp80 @sinl(x86_fp80) nounwind readonly
14