================ @@ -400,6 +400,14 @@ void AVRToolChain::AddClangSystemIncludeArgs(const ArgList &DriverArgs, void AVRToolChain::addClangTargetOptions( const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, Action::OffloadKind DeviceOffloadKind) const { + // Reject C/C++ compilation for avr1 devices. + const Driver &D = getDriver(); + std::string CPU = getCPUName(D, DriverArgs, getTriple()); ---------------- benshi001 wrote:
I think `const Driver &D = getDriver();` at line 404 is necessary, since I have to use `D.Diag(..)`, it would not be better to call `getDriver()` twice. https://github.com/llvm/llvm-project/pull/111798 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits