[PATCH] D88594: [OpenMP] Add Error Handling for Conflicting Pointer Sizes for Target Offload
    Alexey Bataev via Phabricator via cfe-commits 
    cfe-commits at lists.llvm.org
       
    Wed Oct  7 13:16:51 PDT 2020
    
    
  
ABataev added a comment.
LG with a nit.
================
Comment at: clang/lib/Frontend/CompilerInvocation.cpp:3195
+    enum ArchPtrSize { Arch16Bit, Arch32Bit, Arch64Bit };
+    auto getArchPtrSize = [](llvm::Triple &T) {
+      if (T.isArch16Bit())
----------------
`const Triple &`
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D88594/new/
https://reviews.llvm.org/D88594
    
    
More information about the cfe-commits
mailing list