From: Douglas Gregor Date: Wed, 22 Apr 2009 00:17:41 +0000 (+0000) Subject: Eliminate a FIXME in one of the PCH test cases X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c8c455faad5623e2f93fd02e09c2b949d8be8c8;p=clang Eliminate a FIXME in one of the PCH test cases git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69757 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/PCH/variables.c b/test/PCH/variables.c index 18eae60f7b..c988a59ce6 100644 --- a/test/PCH/variables.c +++ b/test/PCH/variables.c @@ -11,8 +11,8 @@ float *fp = &ip; // expected-warning{{incompatible pointer types}} double z; // expected-error{{redefinition}} // FIXME:variables.h expected-note{{previous}} int z2 = 18; // expected-error{{redefinition}} -//double VeryHappy; // FIXME: xpected-error{{redefinition}} - +double VeryHappy; // expected-error{{redefinition}} +// FIXME:variables.h expected-note{{previous definition is here}} int Q = A_MACRO_IN_THE_PCH;