Quuxplusone / LLVMBugzillaTest

0 stars 0 forks source link

lldb.utils.symbolication always resolve to the next line #22932

Open Quuxplusone opened 9 years ago

Quuxplusone commented 9 years ago
Bugzilla Link PR22933
Status NEW
Importance P normal
Reported by shore.cloud@gmail.com
Reported on 2015-03-17 06:37:14 -0700
Last modified on 2015-03-17 06:45:37 -0700
Version unspecified
Hardware PC MacOS X
CC
Fixed by commit(s)
Attachments
Blocks
Blocked by
See also
For example:

lldb.utils.symbolication result:

     0x0000000000d2e58b `GameScene::onEnter() + 59 at GameScene.cpp:730

while the malloc_history command line utility returns:

 GameScene::onEnter()  (in xxx) + 59  [0xd2e58b]  GameScene.cpp:728

The target address is 0xd2e58b, but it resolves to line 730 in
lldb.utils.symbolication, which is different from malloc_history's line 728.
Quuxplusone commented 9 years ago

Line 728 is the correct result.