[PATCH] D41032: [CodeGen][X86] Implement _InterlockedCompareExchange128 intrinsic
    David Majnemer via Phabricator via cfe-commits 
    cfe-commits at lists.llvm.org
       
    Tue Dec 12 15:48:41 PST 2017
    
    
  
majnemer added inline comments.
================
Comment at: llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp:8439
+
+    llvm::Type *Int128Ty = llvm::IntegerType::get(getLLVMContext(), 128);
+    llvm::Type *Int128PtrTy = Int128Ty->getPointerTo();
----------------
Builder.getInt128Ty()
https://reviews.llvm.org/D41032
    
    
More information about the cfe-commits
mailing list