| 71 | /// Getter and setter for compiled symbol. |
| 72 | const auto &getSymbol() const noexcept { return IntrSymbol; } |
| 73 | void setSymbol(Symbol<const Executable::IntrinsicsTable *> S) noexcept { |
| 74 | IntrSymbol = std::move(S); |
| 75 | } |
| 76 | |
| 77 | /// Getter and setter for validated flag. |
| 78 | bool getIsValidated() const noexcept { return IsValidated; } |