diff options
author | Jun Zhang <jun@junz.org> | 2022-08-27 22:32:47 +0800 |
---|---|---|
committer | Jun Zhang <jun@junz.org> | 2022-08-27 22:32:47 +0800 |
commit | a4f84f1b2e92ea79b70b9961049a1af7d9e1f2fa (patch) | |
tree | 08ae3281de11f6dd64250becf8edd881348e1a08 /clang/lib/Basic/SourceManager.cpp | |
parent | 1bcf21ca7f3649387df9815e065be2a0435b5a39 (diff) | |
download | llvm-a4f84f1b2e92ea79b70b9961049a1af7d9e1f2fa.zip llvm-a4f84f1b2e92ea79b70b9961049a1af7d9e1f2fa.tar.gz llvm-a4f84f1b2e92ea79b70b9961049a1af7d9e1f2fa.tar.bz2 |
[CodeGen] Track DeferredDecls that have been emitted
If we run into a first usage or definition of a mangled name, and
there's a DeferredDecl that associated with it, we should remember it we
need to emit it later on.
Without this patch, clang-repl hits a JIT symbol not found error:
clang-repl> extern "C" int printf(const char *, ...);
clang-repl> auto l1 = []() { printf("ONE\n"); return 42; };
clang-repl> auto l2 = []() { printf("TWO\n"); return 17; };
clang-repl> auto r1 = l1();
ONE
clang-repl> auto r2 = l2();
TWO
clang-repl> auto r3 = l2();
JIT session error: Symbols not found: [ l2 ]
error: Failed to materialize symbols: { (main,
{ r3, orc_init_func.incr_module_5, $.incr_module_5.inits.0 }) }
Signed-off-by: Jun Zhang <jun@junz.org>
Differential Revision: https://reviews.llvm.org/D130831
Diffstat (limited to 'clang/lib/Basic/SourceManager.cpp')
0 files changed, 0 insertions, 0 deletions