Bug 6543 - <<break N>> shall break at line N; <<brea foo>> breaks at foo's location
Summary: <<break N>> shall break at line N; <<brea foo>> breaks at foo's location
Status: NEW
Alias: None
Product: frysk
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
: P2 normal
Target Milestone: ---
Assignee: Unassigned
URL:
Keywords:
Depends on:
Blocks: 2246 6540
  Show dependency treegraph
 
Reported: 2008-05-21 13:15 UTC by Andrew Cagney
Modified: 2008-05-21 13:15 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Cagney 2008-05-21 13:15:21 UTC
The spec is clear about this one; for instance:
  break 10
breaks at _line_ 10.  This means that simple values such as:
  break 10+1
(which don't have a location can probably also be interpreted the same way)

conversely, a specifiication such as:
  break foo
where foo yields a location implies breaking at that location.