[PATCH] D72281: [Matrix] Add matrix type to Clang.
    Gabor Marton via Phabricator via cfe-commits 
    cfe-commits at lists.llvm.org
       
    Mon Mar 23 08:41:51 PDT 2020
    
    
  
martong added inline comments.
================
Comment at: clang/lib/AST/ASTStructuralEquivalence.cpp:647
+      return false;
+    if (Mat1->getNumRows() != Mat2->getNumRows())
+      return false;
----------------
Should we check `getNumColumns()` too?
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D72281/new/
https://reviews.llvm.org/D72281
    
    
More information about the cfe-commits
mailing list