diff options
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 2622717..30e2856 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]+}} |