diff options
Diffstat (limited to 'clang/lib/CIR/CodeGen/CIRGenConstantEmitter.h')
| -rw-r--r-- | clang/lib/CIR/CodeGen/CIRGenConstantEmitter.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/clang/lib/CIR/CodeGen/CIRGenConstantEmitter.h b/clang/lib/CIR/CodeGen/CIRGenConstantEmitter.h index d455f6e28340..ccded3dacf03 100644 --- a/clang/lib/CIR/CodeGen/CIRGenConstantEmitter.h +++ b/clang/lib/CIR/CodeGen/CIRGenConstantEmitter.h @@ -81,6 +81,14 @@ public: // side effects, or emitting an initialization that requires a // reference to its current location. mlir::Attribute emitForMemory(mlir::Attribute c, QualType destType); + static mlir::Attribute emitForMemory(CIRGenModule &cgm, mlir::Attribute c, + clang::QualType destTy); + + mlir::Attribute emitNullForMemory(mlir::Location loc, QualType t) { + return emitNullForMemory(loc, cgm, t); + } + static mlir::Attribute emitNullForMemory(mlir::Location loc, + CIRGenModule &cgm, QualType t); /// Try to emit the initializer of the given declaration as an abstract /// constant. @@ -104,7 +112,9 @@ public: mlir::TypedAttr tryEmitPrivate(const Expr *e, QualType destType); mlir::Attribute tryEmitPrivate(const APValue &value, QualType destType); - mlir::Attribute tryEmitPrivateForMemory(const APValue &value, QualType t); + mlir::Attribute tryEmitPrivateForMemory(const Expr *e, QualType destTy); + mlir::Attribute tryEmitPrivateForMemory(const APValue &value, + QualType destTy); private: #ifndef NDEBUG |
