[PATCH] D156790: [clang][dataflow] Remove deprecated `Strict` accessors.
Martin Böhme via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 1 06:32:16 PDT 2023
mboehme created this revision.
Herald added subscribers: martong, xazax.hun.
Herald added a reviewer: NoQ.
Herald added a project: All.
mboehme requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D156790
Files:
clang/include/clang/Analysis/FlowSensitive/DataflowEnvironment.h
Index: clang/include/clang/Analysis/FlowSensitive/DataflowEnvironment.h
===================================================================
--- clang/include/clang/Analysis/FlowSensitive/DataflowEnvironment.h
+++ clang/include/clang/Analysis/FlowSensitive/DataflowEnvironment.h
@@ -276,11 +276,6 @@
/// `E` must be a glvalue or a `BuiltinType::BuiltinFn`
void setStorageLocation(const Expr &E, StorageLocation &Loc);
- /// Deprecated synonym for `setStorageLocation()`.
- void setStorageLocationStrict(const Expr &E, StorageLocation &Loc) {
- setStorageLocation(E, Loc);
- }
-
/// Returns the storage location assigned to the glvalue `E` in the
/// environment, or null if `E` isn't assigned a storage location in the
/// environment.
@@ -292,11 +287,6 @@
/// `E` must be a glvalue or a `BuiltinType::BuiltinFn`
StorageLocation *getStorageLocation(const Expr &E) const;
- /// Deprecated synonym for `getStorageLocation()`.
- StorageLocation *getStorageLocationStrict(const Expr &E) const {
- return getStorageLocation(E);
- }
-
/// Returns the storage location assigned to the `this` pointee in the
/// environment or null if the `this` pointee has no assigned storage location
/// in the environment.
@@ -454,9 +444,6 @@
/// `StructValue` has a durable storage location.
void setValue(const Expr &E, Value &Val);
- /// Deprecated synonym for `setValue()`.
- void setValueStrict(const Expr &E, Value &Val) { setValue(E, Val); }
-
/// Returns the value assigned to `Loc` in the environment or null if `Loc`
/// isn't assigned a value in the environment.
Value *getValue(const StorageLocation &Loc) const;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D156790.546024.patch
Type: text/x-patch
Size: 1672 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230801/fb7385ed/attachment-0001.bin>
More information about the cfe-commits
mailing list