diff options
| author | Mingming Liu <mingmingl@google.com> | 2025-09-10 15:25:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-10 15:25:31 -0700 |
| commit | 1417dafa1db9cb1b2b09438aa9f53ea5ab6e36e2 (patch) | |
| tree | 57f4b1f313c8cf74eed8819870f39c36ea263c68 /clang/lib/CIR/CodeGen/CIRGenConstantEmitter.h | |
| parent | 898b813bc8a6d0276bf0f4769f5f2f64b34e632d (diff) | |
| parent | b8cefcb601ddaa18482555c4ff363c01a270c2fe (diff) | |
Merge branch 'main' into users/mingmingl-llvm/samplefdo-profile-formatusers/mingmingl-llvm/samplefdo-profile-format
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 |
