File tree 3 files changed +2
-10
lines changed
include/clang/Interpreter
3 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -95,8 +95,7 @@ class Interpreter {
95
95
// An optional parser for CUDA offloading
96
96
std::unique_ptr<IncrementalParser> DeviceParser;
97
97
98
- // / List containing every information about every incrementally parsed piece
99
- // / of code.
98
+ // / List containing information about each incrementally parsed piece of code.
100
99
std::list<PartialTranslationUnit> PTUs;
101
100
102
101
unsigned InitPTUSize = 0 ;
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class IncrementalCUDADeviceParser : public IncrementalParser {
49
49
llvm::SmallString<1024 > PTXCode;
50
50
llvm::SmallVector<char , 1024 > FatbinContent;
51
51
llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> VFS;
52
- CodeGenOptions &CodeGenOpts; // intentionally a reference.
52
+ CodeGenOptions &CodeGenOpts; // Intentionally a reference.
53
53
const TargetOptions &TargetOpts;
54
54
};
55
55
Original file line number Diff line number Diff line change @@ -302,22 +302,15 @@ class IncrementalAction : public WrapperFrontendAction {
302
302
CI.getFrontendOpts ().ProgramAction );
303
303
return Act;
304
304
case frontend::ASTDump:
305
- [[fallthrough]];
306
305
case frontend::ASTPrint:
307
- [[fallthrough]];
308
306
case frontend::ParseSyntaxOnly:
309
307
Act = CreateFrontendAction (CI);
310
308
break ;
311
309
case frontend::PluginAction:
312
- [[fallthrough]];
313
310
case frontend::EmitAssembly:
314
- [[fallthrough]];
315
311
case frontend::EmitBC:
316
- [[fallthrough]];
317
312
case frontend::EmitObj:
318
- [[fallthrough]];
319
313
case frontend::PrintPreprocessedInput:
320
- [[fallthrough]];
321
314
case frontend::EmitLLVMOnly:
322
315
Act.reset (new EmitLLVMOnlyAction (&LLVMCtx));
323
316
break ;
You can’t perform that action at this time.
0 commit comments