diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2014-11-24 09:08:18 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2014-11-24 09:08:18 +0000 |
| commit | 5ca98fd98791947eba83a1ed3f2c8191ef7afa6c (patch) | |
| tree | f5944309621cee4fe0976be6f9ac619b7ebfc4c2 /test/CodeGen/AArch64/neon-fpround_f128.ll | |
| parent | 68bcb7db193e4bc81430063148253d30a791023e (diff) | |
Notes
Diffstat (limited to 'test/CodeGen/AArch64/neon-fpround_f128.ll')
| -rw-r--r-- | test/CodeGen/AArch64/neon-fpround_f128.ll | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/AArch64/neon-fpround_f128.ll b/test/CodeGen/AArch64/neon-fpround_f128.ll new file mode 100644 index 000000000000..a93f3f2723c3 --- /dev/null +++ b/test/CodeGen/AArch64/neon-fpround_f128.ll @@ -0,0 +1,18 @@ +; RUN: llc < %s -verify-machineinstrs -mtriple=aarch64-none-linux-gnu -mattr=+neon -fp-contract=fast | FileCheck %s + +define <1 x double> @test_fpround_v1f128(<1 x fp128>* %a) { +; CHECK-LABEL: test_fpround_v1f128: +; CHECK: bl __trunctfdf2 + %b = load <1 x fp128>* %a + %c = fptrunc <1 x fp128> %b to <1 x double> + ret <1 x double> %c +} + +define <2 x double> @test_fpround_v2f128(<2 x fp128>* %a) { +; CHECK-LABEL: test_fpround_v2f128: +; CHECK: bl __trunctfdf2 +; CHECK: bl __trunctfdf2 + %b = load <2 x fp128>* %a + %c = fptrunc <2 x fp128> %b to <2 x double> + ret <2 x double> %c +} |
