summaryrefslogtreecommitdiffstats
path: root/test/Index/complete-macro-args.c
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2013-02-22 22:28:58 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2013-02-22 22:28:58 +0000
commitfdf5706440543c744cd9faf55235a757a7278daa (patch)
tree68938ed3a67032d46cd240709ca2a172944fe4ea /test/Index/complete-macro-args.c
parentf799ae1afb897151a84a7170951e367d8307ae04 (diff)
[libclang] Fix assertion hit when code-completing inside a function macro with more
arguments than it should accept. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/complete-macro-args.c')
-rw-r--r--test/Index/complete-macro-args.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/Index/complete-macro-args.c b/test/Index/complete-macro-args.c
index 0b4dd20734..250798470c 100644
--- a/test/Index/complete-macro-args.c
+++ b/test/Index/complete-macro-args.c
@@ -19,6 +19,11 @@ void test2(struct Point *p) {
MACRO3(p->x
}
+#define FM(x) x
+void test3(struct Point *p) {
+ FM(p->x, a);
+}
+
#define VGM(...) 0
#define VGM2(...) __VA_ARGS__
@@ -37,6 +42,7 @@ void test3(struct Point *p) {
// RUN: c-index-test -code-completion-at=%s:12:12 %s | FileCheck %s
// RUN: c-index-test -code-completion-at=%s:18:13 %s | FileCheck %s
// RUN: c-index-test -code-completion-at=%s:19:13 %s | FileCheck %s
+// RUN: c-index-test -code-completion-at=%s:24:9 %s | FileCheck %s
// CHECK: FieldDecl:{ResultType float}{TypedText x} (35)
// CHECK-NEXT: FieldDecl:{ResultType float}{TypedText y} (35)
// CHECK-NEXT: FieldDecl:{ResultType float}{TypedText z} (35)
@@ -46,7 +52,7 @@ void test3(struct Point *p) {
// With these, code-completion is unknown because the macro argument (and the
// completion point) is not expanded by the macro definition.
-// RUN: c-index-test -code-completion-at=%s:28:15 %s -DEOF_TEST1 | FileCheck %s -check-prefix=CHECK-EOF
-// RUN: c-index-test -code-completion-at=%s:32:20 %s -DEOF_TEST2 | FileCheck %s -check-prefix=CHECK-EOF
+// RUN: c-index-test -code-completion-at=%s:33:15 %s -DEOF_TEST1 | FileCheck %s -check-prefix=CHECK-EOF
+// RUN: c-index-test -code-completion-at=%s:37:20 %s -DEOF_TEST2 | FileCheck %s -check-prefix=CHECK-EOF
// CHECK-EOF: Completion contexts:
// CHECK-EOF: Unknown