Skip to content

Commit

Permalink
llvm assert fix #1283
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Fennell authored and Scott Fennell committed Jun 10, 2022
1 parent 33d2a53 commit 239bfff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trick_source/codegen/Interface_Code_Gen/main.cpp
Expand Up @@ -215,7 +215,7 @@ int main(int argc, char * argv[]) {
ci.setASTConsumer(astConsumer);
#endif
ci.createASTContext();
ci.createSema(clang::TU_Prefix, NULL);
ci.createSema(clang::TU_Complete, NULL);

// Get the full path of the file to be read
char buffer[input_file_names[0].size() + 1];
Expand Down

0 comments on commit 239bfff

Please sign in to comment.