-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The IdResolver chain is the main way for C to implement lookup rules. Every new partial translation unit caused clang to exit the top-most scope which in turn cleaned up the IdResolver chain. That was not an issue for C++ because its lookup is implemented on the level of declaration contexts. This patch keeps the IdResolver chain across partial translation units maintaining proper C-style lookup infrastructure.
- Loading branch information
1 parent
42070a5
commit 72d655c
Showing
3 changed files
with
39 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// REQUIRES: host-supports-jit | ||
// UNSUPPORTED: system-aix | ||
|
||
// RUN: cat %s | clang-repl -Xcc -xc -Xcc -Xclang -Xcc -verify | FileCheck %s | ||
// RUN: cat %s | clang-repl -Xcc -xc -Xcc -O2 -Xcc -Xclang -Xcc -verify| FileCheck %s | ||
int printf(const char *, ...); | ||
int i = 42; err // expected-error{{use of undeclared identifier}} | ||
int i = 42; | ||
struct S { float f; struct S *m;} s = {1.0, 0}; | ||
// FIXME: Making foo inline fails to emit the function. | ||
int foo() { return 42; } | ||
void run() { \ | ||
printf("i = %d\n", i); \ | ||
printf("S[f=%f, m=0x%llx]\n", s.f, (unsigned long long)s.m); \ | ||
int r3 = foo(); \ | ||
} | ||
run(); | ||
// CHECK: i = 42 | ||
// CHECK-NEXT: S[f=1.000000, m=0x0] | ||
|
||
%quit |