diff options
Diffstat (limited to 'llvm/test/CodeGen/Hexagon/gp-plus-offset-store.ll')
-rw-r--r-- | llvm/test/CodeGen/Hexagon/gp-plus-offset-store.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Hexagon/gp-plus-offset-store.ll b/llvm/test/CodeGen/Hexagon/gp-plus-offset-store.ll index 6b181cabe47..66391b954d0 100644 --- a/llvm/test/CodeGen/Hexagon/gp-plus-offset-store.ll +++ b/llvm/test/CodeGen/Hexagon/gp-plus-offset-store.ll @@ -6,7 +6,7 @@ @foo = common global %struct.struc zeroinitializer, align 4 define void @storeByte(i32 %val1, i32 %val2, i8 zeroext %ival) nounwind { -; CHECK: memb(##foo{{ *}}+{{ *}}1){{ *}}={{ *}}r{{[0-9]+}} +; CHECK: memb(##foo+1) = r{{[0-9]+}} entry: %cmp = icmp sgt i32 %val1, %val2 br i1 %cmp, label %if.then, label %if.end @@ -20,7 +20,7 @@ if.end: ; preds = %if.then, %entry } define void @storeHW(i32 %val1, i32 %val2, i16 signext %ival) nounwind { -; CHECK: memh(##foo{{ *}}+{{ *}}2){{ *}}={{ *}}r{{[0-9]+}} +; CHECK: memh(##foo+2) = r{{[0-9]+}} entry: %cmp = icmp sgt i32 %val1, %val2 br i1 %cmp, label %if.then, label %if.end |