Michael Liao | bc793a7 | 2013-05-01 05:34:30 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -o - | FileCheck %s |
2 | |||||
3 | ; CHECK: sinl | ||||
Duncan Sands | 53c954f | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 4 | |
5 | target triple = "i686-pc-linux-gnu" | ||||
6 | |||||
7 | define x86_fp80 @f(x86_fp80 %x) nounwind { | ||||
8 | entry: | ||||
9 | %tmp2 = tail call x86_fp80 @sinl( x86_fp80 %x ) nounwind readonly ; <x86_fp80> [#uses=1] | ||||
10 | ret x86_fp80 %tmp2 | ||||
11 | } | ||||
12 | |||||
13 | declare x86_fp80 @sinl(x86_fp80) nounwind readonly |