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/floatdp_2source.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Diffstat (limited to 'test/CodeGen/AArch64/floatdp_2source.ll')
-rw-r--r-- | test/CodeGen/AArch64/floatdp_2source.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/AArch64/floatdp_2source.ll b/test/CodeGen/AArch64/floatdp_2source.ll index 262271784ec6..30e2856a4f5b 100644 --- a/test/CodeGen/AArch64/floatdp_2source.ll +++ b/test/CodeGen/AArch64/floatdp_2source.ll @@ -5,7 +5,7 @@ define void @testfloat() { ; CHECK-LABEL: testfloat: - %val1 = load float* @varfloat + %val1 = load float, float* @varfloat %val2 = fadd float %val1, %val1 ; CHECK: fadd {{s[0-9]+}}, {{s[0-9]+}}, {{s[0-9]+}} @@ -33,7 +33,7 @@ define void @testfloat() { define void @testdouble() { ; CHECK-LABEL: testdouble: - %val1 = load double* @vardouble + %val1 = load double, double* @vardouble %val2 = fadd double %val1, %val1 ; CHECK: fadd {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}} |