public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/64626] New: C++14 single quote should not always be a digit separator
@ 2015-01-16  8:12 b.r.longbons at gmail dot com
  2015-01-16  8:22 ` [Bug c++/64626] " b.r.longbons at gmail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: b.r.longbons at gmail dot com @ 2015-01-16  8:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64626

            Bug ID: 64626
           Summary: C++14 single quote should not always be a digit
                    separator
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: b.r.longbons at gmail dot com

Created attachment 34459
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=34459&action=edit
informative testcase

During preprocessing, single quote (') should only be considered a digit
separator if it is followed by a digit or nondigit.

If it is followed by any other character, it should be considered as the start
of a new character-literal, not part of the current pp-number.

I am aware of exactly 2 other cases where a preprocessing-token needs to
consume 2 characters or none at all (. -> ... and %: -> %:%:), and gcc seems to
handle them correctly. (There is also the <:: case which looks ahead two
characters to *not* consume a character).


Unimplemented: gcc 4.8
Bad: Debian gcc 4.9.1-19
Bad: gcc 5.0.0 snapshot from 20141228
Good: Debian clang 3.4, 3.5, and svn snapshot of 3.6


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/64626] C++14 single quote should not always be a digit separator
  2015-01-16  8:12 [Bug c++/64626] New: C++14 single quote should not always be a digit separator b.r.longbons at gmail dot com
@ 2015-01-16  8:22 ` b.r.longbons at gmail dot com
  2015-03-05 23:52 ` emsr at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: b.r.longbons at gmail dot com @ 2015-01-16  8:22 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64626

--- Comment #1 from Ben Longbons <b.r.longbons at gmail dot com> ---
Demostration that gcc correctly preprocesses the other tokens:

#define JOIN(a, b) a##b
JOIN(.., .)
// error about pasting . and .

#define JOIN3(a, b, c) a##b##c
JOIN3(%:%, :, %:)
// successfully results in %: %:%:
// (though note that the order of evaluation of ## is unspecified so if b##c
were evaluated first a compliant implementation could fail to paste :%:)


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/64626] C++14 single quote should not always be a digit separator
  2015-01-16  8:12 [Bug c++/64626] New: C++14 single quote should not always be a digit separator b.r.longbons at gmail dot com
  2015-01-16  8:22 ` [Bug c++/64626] " b.r.longbons at gmail dot com
@ 2015-03-05 23:52 ` emsr at gcc dot gnu.org
  2015-03-17  0:51 ` emsr at gcc dot gnu.org
  2015-03-17 23:39 ` emsr at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: emsr at gcc dot gnu.org @ 2015-03-05 23:52 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64626

emsr at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-03-05
                 CC|                            |emsr at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |emsr at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from emsr at gcc dot gnu.org ---
Created attachment 34971
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=34971&action=edit
In the lexer check if a number ends in digit separator.  If so back up.

This is testing...
The new test case is the one here in the trail.

libcpp/

2015-03-05  Edward Smith-Rowland  <3dw4rd@verizon.net>

    PR c++/64626
    * expr.c (parse_has_attribute): New function; (eval_token): Look for
    __has_attribute__ and route to parse_has_attribute.


gcc/testsuite/

2015-03-05  Edward Smith-Rowland  <3dw4rd@verizon.net>

    PR c++/64626
    g++.dg/cpp1y/pr64626.C: New.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/64626] C++14 single quote should not always be a digit separator
  2015-01-16  8:12 [Bug c++/64626] New: C++14 single quote should not always be a digit separator b.r.longbons at gmail dot com
  2015-01-16  8:22 ` [Bug c++/64626] " b.r.longbons at gmail dot com
  2015-03-05 23:52 ` emsr at gcc dot gnu.org
@ 2015-03-17  0:51 ` emsr at gcc dot gnu.org
  2015-03-17 23:39 ` emsr at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: emsr at gcc dot gnu.org @ 2015-03-17  0:51 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64626

--- Comment #3 from emsr at gcc dot gnu.org ---
Author: emsr
Date: Tue Mar 17 00:50:55 2015
New Revision: 221470

URL: https://gcc.gnu.org/viewcvs?rev=221470&root=gcc&view=rev
Log:

libcpp/

2015-03-16  Edward Smith-Rowland  <3dw4rd@verizon.net>

    PR c++/64626
    * lex.c (lex_number): If a number ends with digit-seps (') skip back
    and let lex_string take them.


gcc/testsuite/

2015-03-16  Edward Smith-Rowland  <3dw4rd@verizon.net>

    PR c++/64626
    g++.dg/cpp1y/pr64626-1.C: New.
    g++.dg/cpp1y/pr64626-2.C: New.
    g++.dg/cpp1y/digit-sep-neg.C: Adjust errors and warnings.


Added:
    trunk/gcc/testsuite/g++.dg/cpp1y/pr64626-1.C
    trunk/gcc/testsuite/g++.dg/cpp1y/pr64626-2.C
Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/g++.dg/cpp1y/digit-sep-neg.C
    trunk/libcpp/ChangeLog
    trunk/libcpp/lex.c


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/64626] C++14 single quote should not always be a digit separator
  2015-01-16  8:12 [Bug c++/64626] New: C++14 single quote should not always be a digit separator b.r.longbons at gmail dot com
                   ` (2 preceding siblings ...)
  2015-03-17  0:51 ` emsr at gcc dot gnu.org
@ 2015-03-17 23:39 ` emsr at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: emsr at gcc dot gnu.org @ 2015-03-17 23:39 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64626

emsr at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from emsr at gcc dot gnu.org ---
libcpp/

2015-03-16  Edward Smith-Rowland  <3dw4rd@verizon.net>

    PR c++/64626
    * lex.c (lex_number): If a number ends with digit-seps (') skip back
    and let lex_string take them.


gcc/testsuite/

2015-03-16  Edward Smith-Rowland  <3dw4rd@verizon.net>

    PR c++/64626
    g++.dg/cpp1y/pr64626-1.C: New.
    g++.dg/cpp1y/pr64626-2.C: New.
    g++.dg/cpp1y/digit-sep-neg.C: Adjust errors and warnings.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-03-17 23:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-16  8:12 [Bug c++/64626] New: C++14 single quote should not always be a digit separator b.r.longbons at gmail dot com
2015-01-16  8:22 ` [Bug c++/64626] " b.r.longbons at gmail dot com
2015-03-05 23:52 ` emsr at gcc dot gnu.org
2015-03-17  0:51 ` emsr at gcc dot gnu.org
2015-03-17 23:39 ` emsr at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).