[Hexagon] Use A2_tfrsi for constant pool and jump table addresses
[oota-llvm.git] / test / CodeGen / AArch64 / floatdp_2source.ll
index b2256b342acf5588a6718e51ef19ac32ea17e78b..30e2856a4f5b576617db819ce443ebdc366d0451 100644 (file)
@@ -1,11 +1,11 @@
-; RUN: llc -verify-machineinstrs < %s -mtriple=aarch64-none-linux-gnu | FileCheck %s
+; RUN: llc -verify-machineinstrs -o - %s -mtriple=aarch64-linux-gnu -mcpu=cyclone | FileCheck %s
 
 @varfloat = global float 0.0
 @vardouble = global double 0.0
 
 define void @testfloat() {
-; CHECK: testfloat:
-  %val1 = load float* @varfloat
+; CHECK-LABEL: testfloat:
+  %val1 = load float, float* @varfloat
 
   %val2 = fadd float %val1, %val1
 ; CHECK: fadd {{s[0-9]+}}, {{s[0-9]+}}, {{s[0-9]+}}
@@ -32,8 +32,8 @@ define void @testfloat() {
 }
 
 define void @testdouble() {
-; CHECK: testdouble:
-  %val1 = load double* @vardouble
+; CHECK-LABEL: testdouble:
+  %val1 = load double, double* @vardouble
 
   %val2 = fadd double %val1, %val1
 ; CHECK: fadd {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}}