From: Chris Lattner Date: Fri, 25 Jul 2008 18:42:46 +0000 (+0000) Subject: update this testcase. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=806c3b9478b44dec77d28f3de987f793d42ad555;p=clang update this testcase. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54037 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Lexer/c90.c b/test/Lexer/c90.c index 84d30467b9..4bbddaf38b 100644 --- a/test/Lexer/c90.c +++ b/test/Lexer/c90.c @@ -1,5 +1,6 @@ -// RUN: clang -std=c90 -fsyntax-only %s -verify +/* RUN: clang -std=c90 -fsyntax-only %s -verify -pedantic-errors + */ enum { cast_hex = (long) ( - 0x0p-1 /* expected-error {{invalid suffix 'p' on integer constant}} */ + 0x0p-1 /* expected-error {{hexadecimal floating constants are a C99 feature}} */ ) };