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/X86/vec_anyext.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/X86/vec_anyext.ll')
-rw-r--r-- | test/CodeGen/X86/vec_anyext.ll | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/CodeGen/X86/vec_anyext.ll b/test/CodeGen/X86/vec_anyext.ll index d2a4c7f60dd7..c088d7f57b1a 100644 --- a/test/CodeGen/X86/vec_anyext.ll +++ b/test/CodeGen/X86/vec_anyext.ll @@ -2,9 +2,9 @@ ; PR 9267 define<4 x i16> @func_16_32() { - %F = load <4 x i32>* undef + %F = load <4 x i32>, <4 x i32>* undef %G = trunc <4 x i32> %F to <4 x i16> - %H = load <4 x i32>* undef + %H = load <4 x i32>, <4 x i32>* undef %Y = trunc <4 x i32> %H to <4 x i16> %T = add <4 x i16> %Y, %G store <4 x i16>%T , <4 x i16>* undef @@ -12,9 +12,9 @@ define<4 x i16> @func_16_32() { } define<4 x i16> @func_16_64() { - %F = load <4 x i64>* undef + %F = load <4 x i64>, <4 x i64>* undef %G = trunc <4 x i64> %F to <4 x i16> - %H = load <4 x i64>* undef + %H = load <4 x i64>, <4 x i64>* undef %Y = trunc <4 x i64> %H to <4 x i16> %T = xor <4 x i16> %Y, %G store <4 x i16>%T , <4 x i16>* undef @@ -22,36 +22,36 @@ define<4 x i16> @func_16_64() { } define<4 x i32> @func_32_64() { - %F = load <4 x i64>* undef + %F = load <4 x i64>, <4 x i64>* undef %G = trunc <4 x i64> %F to <4 x i32> - %H = load <4 x i64>* undef + %H = load <4 x i64>, <4 x i64>* undef %Y = trunc <4 x i64> %H to <4 x i32> %T = or <4 x i32> %Y, %G ret <4 x i32> %T } define<4 x i8> @func_8_16() { - %F = load <4 x i16>* undef + %F = load <4 x i16>, <4 x i16>* undef %G = trunc <4 x i16> %F to <4 x i8> - %H = load <4 x i16>* undef + %H = load <4 x i16>, <4 x i16>* undef %Y = trunc <4 x i16> %H to <4 x i8> %T = add <4 x i8> %Y, %G ret <4 x i8> %T } define<4 x i8> @func_8_32() { - %F = load <4 x i32>* undef + %F = load <4 x i32>, <4 x i32>* undef %G = trunc <4 x i32> %F to <4 x i8> - %H = load <4 x i32>* undef + %H = load <4 x i32>, <4 x i32>* undef %Y = trunc <4 x i32> %H to <4 x i8> %T = sub <4 x i8> %Y, %G ret <4 x i8> %T } define<4 x i8> @func_8_64() { - %F = load <4 x i64>* undef + %F = load <4 x i64>, <4 x i64>* undef %G = trunc <4 x i64> %F to <4 x i8> - %H = load <4 x i64>* undef + %H = load <4 x i64>, <4 x i64>* undef %Y = trunc <4 x i64> %H to <4 x i8> %T = add <4 x i8> %Y, %G ret <4 x i8> %T |