[clang] [clang] Lower _BitInt(129+) to a different type in LLVM IR (PR #91364)
Eli Friedman via cfe-commits
cfe-commits at lists.llvm.org
Wed May 29 11:41:54 PDT 2024
================
@@ -128,6 +128,15 @@ class CodeGenTypes {
/// memory representation is usually i8 or i32, depending on the target.
llvm::Type *ConvertTypeForMem(QualType T, bool ForBitField = false);
+ /// Check that size and abi alignment of given LLVM type matches size and
+ /// alignment of given AST type.
+ bool LLVMTypeLayoutMatchesAST(QualType ASTTy, llvm::Type *LLVMTy);
----------------
efriedma-quic wrote:
I'm not sure we should be exposing LLVMTypeLayoutMatchesAST as a public API? If any code cares, it's probably not calling ToMemory/FromMemory like it should.
https://github.com/llvm/llvm-project/pull/91364
More information about the cfe-commits
mailing list