[Mlir-commits] [mlir] e7d0dae - [MLIR][GPU] Add missing #include to SerializeToHsaco.cpp

Krzysztof Drewniak llvmlistbot at llvm.org
Fri Jan 28 14:56:42 PST 2022


Author: Krzysztof Drewniak
Date: 2022-01-28T22:56:38Z
New Revision: e7d0dae76ec344727f8e8ab7078b5ba2dc9b839d

URL: https://github.com/llvm/llvm-project/commit/e7d0dae76ec344727f8e8ab7078b5ba2dc9b839d
DIFF: https://github.com/llvm/llvm-project/commit/e7d0dae76ec344727f8e8ab7078b5ba2dc9b839d.diff

LOG: [MLIR][GPU] Add missing #include to SerializeToHsaco.cpp

llvm/Support/Path.h was likely previously implicitly included, and a
refactoring removed that inclusion, breaking the pass.

Differential Revision: https://reviews.llvm.org/D118508

Added: 
    

Modified: 
    mlir/lib/Dialect/GPU/Transforms/SerializeToHsaco.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Dialect/GPU/Transforms/SerializeToHsaco.cpp b/mlir/lib/Dialect/GPU/Transforms/SerializeToHsaco.cpp
index 35fa48c189fd..7da436e8697b 100644
--- a/mlir/lib/Dialect/GPU/Transforms/SerializeToHsaco.cpp
+++ b/mlir/lib/Dialect/GPU/Transforms/SerializeToHsaco.cpp
@@ -40,6 +40,7 @@
 
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/FileUtilities.h"
+#include "llvm/Support/Path.h"
 #include "llvm/Support/Program.h"
 #include "llvm/Support/SourceMgr.h"
 #include "llvm/Support/TargetSelect.h"


        


More information about the Mlir-commits mailing list