summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeCompletion/macros.c
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-11-07 00:00:49 +0000
committerDouglas Gregor <dgregor@apple.com>2009-11-07 00:00:49 +0000
commit9eb7701dff9df1c7900a14c75eb1fba5cd48ed8a (patch)
tree684d0490f14499696eb469870df866ebff18595e /clang/test/CodeCompletion/macros.c
parentba78dcd90dbb37497a930f4127b85be1169e6a38 (diff)
downloadbcm5719-llvm-9eb7701dff9df1c7900a14c75eb1fba5cd48ed8a.tar.gz
bcm5719-llvm-9eb7701dff9df1c7900a14c75eb1fba5cd48ed8a.zip
Various improvements to Clang's code-completion infrastructure:
- Introduce more code-completion string "chunk" kinds that describe symbols, the actual text that the user is expected to type, etc. - Make the generation of macro results optional, since it can be slow - Make code-completion accessible through the C API, marshalling the code-completion results through a temporary file (ick) to maintain process separation. The last doesn't have tests yet. llvm-svn: 86306
Diffstat (limited to 'clang/test/CodeCompletion/macros.c')
-rw-r--r--clang/test/CodeCompletion/macros.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeCompletion/macros.c b/clang/test/CodeCompletion/macros.c
index d5c1f8f17fc..82ccea2be01 100644
--- a/clang/test/CodeCompletion/macros.c
+++ b/clang/test/CodeCompletion/macros.c
@@ -13,9 +13,9 @@ struct Point {
};
void test(struct Point *p) {
- // RUN: clang-cc -fsyntax-only -code-completion-at=%s:17:14 %s -o - | FileCheck -check-prefix=CC1 %s &&
+ // RUN: clang-cc -fsyntax-only -code-completion-macros -code-completion-at=%s:17:14 %s -o - | FileCheck -check-prefix=CC1 %s &&
switch (p->IDENTITY(color)) {
- // RUN: clang-cc -fsyntax-only -code-completion-at=%s:19:9 %s -o - | FileCheck -check-prefix=CC2 %s &&
+ // RUN: clang-cc -fsyntax-only -code-completion-macros -code-completion-at=%s:19:9 %s -o - | FileCheck -check-prefix=CC2 %s &&
case
}
// CC1: color
OpenPOWER on IntegriCloud