[flang-commits] [flang] [flang] fix one more compilation issue on aarch64. (PR #83258)

via flang-commits flang-commits at lists.llvm.org
Wed Feb 28 04:48:12 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-flang-fir-hlfir

Author: Kareem Ergawy (ergawy)

<details>
<summary>Changes</summary>

I used `class` instead of `struct` for `SymbolMap`.

---
Full diff: https://github.com/llvm/llvm-project/pull/83258.diff


1 Files Affected:

- (modified) flang/include/flang/Lower/AbstractConverter.h (+1-1) 


``````````diff
diff --git a/flang/include/flang/Lower/AbstractConverter.h b/flang/include/flang/Lower/AbstractConverter.h
index 944430a1548839..32e7a5e2b04061 100644
--- a/flang/include/flang/Lower/AbstractConverter.h
+++ b/flang/include/flang/Lower/AbstractConverter.h
@@ -53,7 +53,7 @@ class DerivedTypeSpec;
 
 namespace lower {
 class SymMap;
-class SymbolBox;
+struct SymbolBox;
 namespace pft {
 struct Variable;
 }

``````````

</details>


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


More information about the flang-commits mailing list