@@ -276,11 +276,6 @@ class Environment {
276
276
// / `E` must be a glvalue or a `BuiltinType::BuiltinFn`
277
277
void setStorageLocation (const Expr &E, StorageLocation &Loc);
278
278
279
- // / Deprecated synonym for `setStorageLocation()`.
280
- void setStorageLocationStrict (const Expr &E, StorageLocation &Loc) {
281
- setStorageLocation (E, Loc);
282
- }
283
-
284
279
// / Returns the storage location assigned to the glvalue `E` in the
285
280
// / environment, or null if `E` isn't assigned a storage location in the
286
281
// / environment.
@@ -292,11 +287,6 @@ class Environment {
292
287
// / `E` must be a glvalue or a `BuiltinType::BuiltinFn`
293
288
StorageLocation *getStorageLocation (const Expr &E) const ;
294
289
295
- // / Deprecated synonym for `getStorageLocation()`.
296
- StorageLocation *getStorageLocationStrict (const Expr &E) const {
297
- return getStorageLocation (E);
298
- }
299
-
300
290
// / Returns the storage location assigned to the `this` pointee in the
301
291
// / environment or null if the `this` pointee has no assigned storage location
302
292
// / in the environment.
@@ -454,9 +444,6 @@ class Environment {
454
444
// / `StructValue` has a durable storage location.
455
445
void setValue (const Expr &E, Value &Val);
456
446
457
- // / Deprecated synonym for `setValue()`.
458
- void setValueStrict (const Expr &E, Value &Val) { setValue (E, Val); }
459
-
460
447
// / Returns the value assigned to `Loc` in the environment or null if `Loc`
461
448
// / isn't assigned a value in the environment.
462
449
Value *getValue (const StorageLocation &Loc) const ;
0 commit comments