(self, *args, **kwargs)
| 83 | self._opt = None |
| 84 | |
| 85 | def nopt(self, *args, **kwargs): |
| 86 | FakeCCompilerOpt.fake_info = (self.arch, self.cc, "") |
| 87 | return FakeCCompilerOpt(*args, **kwargs) |
| 88 | |
| 89 | def opt(self): |
| 90 | if not self._opt: |
no test coverage detected