Skip to content

Commit

Permalink
Integrate LLVM at llvm/llvm-project@efefee28a41e
Browse files Browse the repository at this point in the history
Updates LLVM usage to match
[efefee28a41e](llvm/llvm-project@efefee28a41e)

PiperOrigin-RevId: 648950762
  • Loading branch information
TFRT team authored and copybara-github committed Jul 3, 2024
1 parent d79d8e5 commit 816371e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions include/tfrt/bef_converter/mlir_to_bef_translate.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,11 @@

namespace mlir {
class ModuleOp;
struct LogicalResult;
} // namespace mlir

namespace tfrt {

mlir::LogicalResult MLIRToBEFTranslate(mlir::ModuleOp module,
llvm::LogicalResult MLIRToBEFTranslate(mlir::ModuleOp module,
llvm::raw_ostream& output);

}
Expand Down
2 changes: 2 additions & 0 deletions include/tfrt/support/forward_decls.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,15 @@

#include "llvm/Support/Casting.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/LogicalResult.h"

// We don't forward declare:
// DenseMap, SmallVector, StringMap, StringSet
// Because they use default template parameters.
namespace llvm {

class raw_ostream;
struct LogicalResult;

template <typename T>
class ArrayRef;
Expand Down

0 comments on commit 816371e

Please sign in to comment.