| 75 | OFormat.store(Format, std::memory_order_relaxed); |
| 76 | } |
| 77 | OutputFormat getOutputFormat() const noexcept { |
| 78 | return OFormat.load(std::memory_order_relaxed); |
| 79 | } |
| 80 | |
| 81 | void setDumpIR(bool IsDump) noexcept { |
| 82 | DumpIR.store(IsDump, std::memory_order_relaxed); |
no test coverage detected