Victor Umansky | 668f7ac | 2012-01-26 08:51:39 +0000 | [diff] [blame^] | 1 | ; RUN: llc < %s -mtriple=i386-apple-darwin10 -mcpu=corei7-avx -mattr=+avx | FileCheck %s
|
| 2 |
|
| 3 | ;; Check that FP_TO_SINT and FP_TO_UINT generate convert with truncate
|
| 4 |
|
| 5 | ; CHECK: test1:
|
| 6 | ; CHECK: vcvttpd2dqy
|
| 7 | ; CHECK: ret
|
| 8 | ; CHECK: test2:
|
| 9 | ; CHECK: vcvttpd2dqy
|
| 10 | ; CHECK: ret
|
| 11 |
|
| 12 | define <4 x i8> @test1(<4 x double> %d) {
|
| 13 | %c = fptoui <4 x double> %d to <4 x i8>
|
| 14 | ret <4 x i8> %c
|
| 15 | }
|
| 16 | define <4 x i8> @test2(<4 x double> %d) {
|
| 17 | %c = fptosi <4 x double> %d to <4 x i8>
|
| 18 | ret <4 x i8> %c
|
| 19 | }
|