diff options
Diffstat (limited to 'test/CodeGen/Hexagon/BranchPredict.ll')
-rw-r--r-- | test/CodeGen/Hexagon/BranchPredict.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/Hexagon/BranchPredict.ll b/test/CodeGen/Hexagon/BranchPredict.ll index 17d169974e5a..40791c981483 100644 --- a/test/CodeGen/Hexagon/BranchPredict.ll +++ b/test/CodeGen/Hexagon/BranchPredict.ll @@ -9,7 +9,7 @@ @j = external global i32 define i32 @foo(i32 %a) nounwind { -; CHECK: if{{ *}}(!p{{[0-3]}}.new) jump:nt +; CHECK: if (!p{{[0-3]}}.new) jump:nt entry: %tobool = icmp eq i32 %a, 0 br i1 %tobool, label %if.else, label %if.then, !prof !0 @@ -31,7 +31,7 @@ return: ; preds = %if.else, %if.then declare i32 @foobar(...) define i32 @bar(i32 %a) nounwind { -; CHECK: if{{ *}}(p{{[0-3]}}.new) jump:nt +; CHECK: if (p{{[0-3]}}.new) jump:nt entry: %tobool = icmp eq i32 %a, 0 br i1 %tobool, label %if.else, label %if.then, !prof !1 @@ -51,7 +51,7 @@ return: ; preds = %if.else, %if.then } define i32 @foo_bar(i32 %a, i16 signext %b) nounwind { -; CHECK: if{{ *}}(!cmp.eq(r{{[0-9]*}}.new, #0)) jump:nt +; CHECK: if (!cmp.eq(r{{[0-9]*}}.new,#0)) jump:nt entry: %0 = load i32, i32* @j, align 4 %tobool = icmp eq i32 %0, 0 |