Bug 6543

Summary: <<break N>> shall break at line N; <<brea foo>> breaks at foo's location
Product: frysk Reporter: Andrew Cagney <cagney>
Component: generalAssignee: Unassigned <frysk-bugzilla>
Status: NEW ---    
Severity: normal    
Priority: P2    
Version: unspecified   
Target Milestone: ---   
Host: Target:
Build: Last reconfirmed:
Project(s) to access: ssh public key:
Bug Depends on:    
Bug Blocks: 2246, 6540    

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.