diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
tree | a6140557876943cdd800ee997c9317283394b22c /test/CodeGen/AArch64/neon-fpround_f128.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Vendor import of llvm trunk r238337:vendor/llvm/llvm-trunk-r238337
Notes
Notes:
svn path=/vendor/llvm/dist/; revision=283625
svn path=/vendor/llvm/llvm-trunk-r238337/; revision=283626; tag=vendor/llvm/llvm-trunk-r238337
Diffstat (limited to 'test/CodeGen/AArch64/neon-fpround_f128.ll')
-rw-r--r-- | test/CodeGen/AArch64/neon-fpround_f128.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/AArch64/neon-fpround_f128.ll b/test/CodeGen/AArch64/neon-fpround_f128.ll index a93f3f2723c3..265664ee9442 100644 --- a/test/CodeGen/AArch64/neon-fpround_f128.ll +++ b/test/CodeGen/AArch64/neon-fpround_f128.ll @@ -3,7 +3,7 @@ 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 + %b = load <1 x fp128>, <1 x fp128>* %a %c = fptrunc <1 x fp128> %b to <1 x double> ret <1 x double> %c } @@ -12,7 +12,7 @@ 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 + %b = load <2 x fp128>, <2 x fp128>* %a %c = fptrunc <2 x fp128> %b to <2 x double> ret <2 x double> %c } |