Integrate LLVM at llvm/llvm-project@0bfe614bc254

Updates LLVM usage to match
[0bfe614bc254](https://github.com/llvm/llvm-project/commit/0bfe614bc254)

PiperOrigin-RevId: 391425155
diff --git a/SUBMODULE_VERSIONS.txt b/SUBMODULE_VERSIONS.txt
index 83176d7..f8bdb77 100644
--- a/SUBMODULE_VERSIONS.txt
+++ b/SUBMODULE_VERSIONS.txt
@@ -4,7 +4,7 @@
 aa533abfd4232b01f9e57041d70114d5a77e6de0 third_party/googletest
 88b845dee001723c4a0db1fe5477de735b6d3bb0 third_party/liburing
 acd6f6f014c25e46363e718381e0b35205df2d83 third_party/libyaml
-0d822da2bdda30a6a79971f9d160c82a4566f6a6 third_party/llvm-project
+0bfe614bc2545c9f254888fc9a62b95ff4aefbb1 third_party/llvm-project
 c15bb9027fd3b690882d55e711a23d68d6dd4e69 third_party/mlir-hlo
 3f701faace7addc75d16dea8a6cd769fa5b3f260 third_party/musl
 4c7697dbe973ed01ae6fbec37d186ebd05982e1f third_party/pybind11
diff --git a/iree/compiler/Codegen/Utils/Utils.cpp b/iree/compiler/Codegen/Utils/Utils.cpp
index 1b9b9d3..210352c 100644
--- a/iree/compiler/Codegen/Utils/Utils.cpp
+++ b/iree/compiler/Codegen/Utils/Utils.cpp
@@ -21,9 +21,8 @@
 unsigned getNumOuterParallelLoops(linalg::LinalgOp op) {
   return op.iterator_types()
       .getValue()
-      .take_while([](Attribute attr) -> bool {
-        return linalg::isParallelIteratorType(attr);
-      })
+      .take_while(
+          [](Attribute attr) -> bool { return isParallelIterator(attr); })
       .size();
 }
 
diff --git a/iree/compiler/Dialect/Flow/Transforms/DispatchLinalgOnTensors.cpp b/iree/compiler/Dialect/Flow/Transforms/DispatchLinalgOnTensors.cpp
index ce2eae1..9d0804a 100644
--- a/iree/compiler/Dialect/Flow/Transforms/DispatchLinalgOnTensors.cpp
+++ b/iree/compiler/Dialect/Flow/Transforms/DispatchLinalgOnTensors.cpp
@@ -140,9 +140,8 @@
 static size_t getNumOuterParallelLoops(linalg::LinalgOp op) {
   return op.iterator_types()
       .getValue()
-      .take_while([](Attribute attr) -> bool {
-        return linalg::isParallelIteratorType(attr);
-      })
+      .take_while(
+          [](Attribute attr) -> bool { return isParallelIterator(attr); })
       .size();
 }
 
diff --git a/third_party/llvm-project b/third_party/llvm-project
index 0d822da..0bfe614 160000
--- a/third_party/llvm-project
+++ b/third_party/llvm-project
@@ -1 +1 @@
-Subproject commit 0d822da2bdda30a6a79971f9d160c82a4566f6a6
+Subproject commit 0bfe614bc2545c9f254888fc9a62b95ff4aefbb1