Index: clang/include/clang/CodeGen/CGFunctionInfo.h =================================================================== --- clang/include/clang/CodeGen/CGFunctionInfo.h +++ clang/include/clang/CodeGen/CGFunctionInfo.h @@ -552,14 +552,14 @@ /// The LLVM::CallingConv to use for this function (as specified by the /// user). - unsigned CallingConvention : 8; + unsigned CallingConvention : 16; /// The LLVM::CallingConv to actually use for this function, which may /// depend on the ABI. - unsigned EffectiveCallingConvention : 8; + unsigned EffectiveCallingConvention : 16; /// The clang::CallingConv that this was originally created with. - unsigned ASTCallingConvention : 6; + unsigned ASTCallingConvention : 16; /// Whether this is an instance method. unsigned InstanceMethod : 1;