dsanders added a comment.
> The route cause of your problem is that ReadRegisterUnsigned returns a value
> where the 32 MSB is garbage while the
> expected behavior is to zero out those bits (it works on i386 and arm
> AFAIK). You should find out why that is happening
> and fix the root caus
Author: enrico
Date: Sat Nov 14 12:17:33 2015
New Revision: 253137
URL: http://llvm.org/viewvc/llvm-project?rev=253137&view=rev
Log:
Some cleanup of the type X delete command
Modified:
lldb/trunk/source/Commands/CommandObjectType.cpp
Modified: lldb/trunk/source/Commands/CommandObjectType.cpp
Author: enrico
Date: Sat Nov 14 12:44:37 2015
New Revision: 253140
URL: http://llvm.org/viewvc/llvm-project?rev=253140&view=rev
Log:
Uniquify all the type X delete commands via one common base class
This removes a lot of code, which is A Good Thing(TM)
Modified:
lldb/trunk/packages/Python/
Author: brucem
Date: Sat Nov 14 19:53:23 2015
New Revision: 253151
URL: http://llvm.org/viewvc/llvm-project?rev=253151&view=rev
Log:
Use library discovery for curses and panel
Summary:
This approach is tunable with custom paths for curses library.
It also detects whether there are requirements m
This revision was automatically updated to reflect the committed changes.
Closed by commit rL253151: Use library discovery for curses and panel (authored
by brucem).
Changed prior to commit:
http://reviews.llvm.org/D14529?vs=39787&id=40220#toc
Repository:
rL LLVM
http://reviews.llvm.org/D14
This revision was automatically updated to reflect the committed changes.
Closed by commit rL253152: Allow to override python-config executable name from
command line (authored by brucem).
Changed prior to commit:
http://reviews.llvm.org/D14528?vs=39786&id=40221#toc
Repository:
rL LLVM
http
Author: brucem
Date: Sat Nov 14 19:56:21 2015
New Revision: 253152
URL: http://llvm.org/viewvc/llvm-project?rev=253152&view=rev
Log:
Allow to override python-config executable name from command line
Summary: pkgsrc (on NetBSD) ships with python2.7-config.
Patch by Kamil Rytarowski. Thanks!
Revi
This revision was automatically updated to reflect the committed changes.
Closed by commit rL253153: Add more autotools/gmake NetBSD glue (authored by
brucem).
Changed prior to commit:
http://reviews.llvm.org/D14531?vs=39789&id=40222#toc
Repository:
rL LLVM
http://reviews.llvm.org/D14531
F
Author: brucem
Date: Sat Nov 14 20:00:09 2015
New Revision: 253153
URL: http://llvm.org/viewvc/llvm-project?rev=253153&view=rev
Log:
Add more autotools/gmake NetBSD glue
Summary: This diff approaches building the project natively on NetBSD with the
autoconf/gmake framework.
Patch by Kamil Rytar