[Mlir-commits] [mlir] [mlir] Add concept of alias blocks (PR #65503)
Jeff Niu
llvmlistbot at llvm.org
Mon Sep 18 10:28:04 PDT 2023
================
@@ -79,6 +82,9 @@ ParseResult Parser::parseFusedLocation(LocationAttr &loc) {
LocationAttr newLoc;
if (parseLocationInstance(newLoc))
return failure();
+ if (syntaxOnly())
----------------
Mogball wrote:
This seems very invasive. There is prior art to allow use-before-def, such as deferred aliases. Why won't that work for your use-case?
https://github.com/llvm/llvm-project/pull/65503
More information about the Mlir-commits
mailing list