[Mlir-commits] [mlir] [MLIR][Bytecode] Enforce alignment requirements (PR #157004)

Nikhil Kalra llvmlistbot at llvm.org
Fri Sep 5 09:32:58 PDT 2025


================
@@ -22,10 +22,13 @@
 #include "llvm/ADT/StringExtras.h"
 #include "llvm/ADT/StringRef.h"
 #include "llvm/Support/Endian.h"
+#include "llvm/Support/Format.h"
+#include "llvm/Support/LogicalResult.h"
----------------
nikalra wrote:

Ah I see what happened here. I originally wrote this code with `llvm::LogicalResult`, but then removed the namespace when I was cleaning things up, which pulls from `mlir/Support/LLVM.h`. Removed in the followup change.

https://github.com/llvm/llvm-project/pull/157004


More information about the Mlir-commits mailing list