[PATCH] D27392: Vectorcall Calling Convention - Adding CodeGen Complete Support
    David Majnemer via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Sun Dec 11 21:46:28 PST 2016
    
    
  
majnemer added inline comments.
================
Comment at: lib/Target/X86/X86CallingConv.cpp:163-166
+  if (ArgFlags.isHva())
+    return true; // If this is an HVA - Stop the search.
+  else
+    return false; // Continue the search.
----------------
This is just `return ArgFlags.isHva();`
Repository:
  rL LLVM
https://reviews.llvm.org/D27392
    
    
More information about the llvm-commits
mailing list