Updating llvm.mlir test to match recent IR change

Recent change updated branch weights to use i64 instead of i32.
Updating llvm.mlir test to match this change.
https://reviews.llvm.org/D88609
This commit is contained in:
Kiran Chandramohan 2020-10-27 08:15:28 +00:00
parent 2ef2841c0d
commit 0fc1aa22ee
1 changed files with 1 additions and 1 deletions

View File

@ -1265,7 +1265,7 @@ llvm.func @cond_br_weights(%cond : !llvm.i1, %arg0 : !llvm.i32, %arg1 : !llvm.i
llvm.return %arg1 : !llvm.i32
}
// CHECK: ![[NODE]] = !{!"branch_weights", i32 5, i32 10}
// CHECK: ![[NODE]] = !{!"branch_weights", i64 5, i64 10}
// -----