summaryrefslogtreecommitdiff
path: root/test/Sema/implicit-decl.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-11-23 23:12:31 +0000
committerChris Lattner <sabre@nondot.org>2008-11-23 23:12:31 +0000
commit5f4a6829dc58cab2f76e2b98492859aa3b91e3f2 (patch)
treec2c13ad4ad80fdb53222315c85fa883abf36becc /test/Sema/implicit-decl.c
parentb8b96aff63e24ff1509f112de871f697aaea55f9 (diff)
downloadclang-5f4a6829dc58cab2f76e2b98492859aa3b91e3f2.tar.gz
Make all the 'redefinition' diagnostics more consistent, and make the
"previously defined here" diagnostics all notes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59920 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/implicit-decl.c')
-rw-r--r--test/Sema/implicit-decl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/implicit-decl.c b/test/Sema/implicit-decl.c
index ea40e61afb..099cf9d20e 100644
--- a/test/Sema/implicit-decl.c
+++ b/test/Sema/implicit-decl.c
@@ -7,7 +7,7 @@ void func() {
int32_t *vector[16];
const char compDesc[16 + 1];
int32_t compCount = 0;
- if (_CFCalendarDecomposeAbsoluteTimeV(compDesc, vector, compCount)) { // expected-error{{previous implicit declaration is here}}
+ if (_CFCalendarDecomposeAbsoluteTimeV(compDesc, vector, compCount)) { // expected-note {{previous implicit declaration is here}}
}
return ((void *)0);
}