Author: bhushan.attarde
Date: Fri Aug 14 01:36:28 2015
New Revision: 245033
URL: http://llvm.org/viewvc/llvm-project?rev=245033&view=rev
Log:
Fixed build failures caused by rL245026. Changed occurrences of ClangASTType to
CompilerType.
Modified:
lldb/trunk/source/Plugins/ABI/SysV-mips64/ABIS
Hi Hans,
Could you please merge this to the release branch?
Thanks
Bhushan
-Original Message-
From: lldb-commits [mailto:lldb-commits-boun...@lists.llvm.org] On Behalf Of
Bhushan D. Attarde via lldb-commits
Sent: 14 August 2015 09:11
To: lldb-commits@lists.llvm.org
Subject: [Lldb-commi
bhushan closed this revision.
bhushan added a comment.
Closed by Commit http://reviews.llvm.org/rL243091
Repository:
rL LLVM
http://reviews.llvm.org/D11449
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/ma
jaydeep closed this revision.
jaydeep added a comment.
Closed by commit http://reviews.llvm.org/rL240373
Repository:
rL LLVM
http://reviews.llvm.org/D10596
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/ma
jaydeep closed this revision.
jaydeep added a comment.
Closed by commit http://reviews.llvm.org/rL242381
Repository:
rL LLVM
http://reviews.llvm.org/D11133
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/ma
jaydeep closed this revision.
jaydeep added a comment.
Closed by commit http://reviews.llvm.org/rL243618
Repository:
rL LLVM
http://reviews.llvm.org/D11455
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/ma
jaydeep closed this revision.
jaydeep added a comment.
Closed by commit http://reviews.llvm.org/rL244866
Repository:
rL LLVM
http://reviews.llvm.org/D11519
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/ma
jaydeep closed this revision.
jaydeep added a comment.
Closed by commit http://reviews.llvm.org/rL244864
Repository:
rL LLVM
http://reviews.llvm.org/D11672
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/ma
jaydeep closed this revision.
jaydeep added a comment.
Closed by commit http://reviews.llvm.org/rL244865
Repository:
rL LLVM
http://reviews.llvm.org/D11747
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/ma
bhushan closed this revision.
bhushan added a comment.
Committed in revision 245026
Repository:
rL LLVM
http://reviews.llvm.org/D11641
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-c
Author: bhushan.attarde
Date: Thu Aug 13 23:44:47 2015
New Revision: 245026
URL: http://llvm.org/viewvc/llvm-project?rev=245026&view=rev
Log:
Handle floating point and aggregate return types in SysV-mips64 ABI
SUMMARY:
This patch adds support of floating point and aggregate return typ
ovyalov created this revision.
ovyalov added reviewers: clayborg, tberghammer, chaoren.
ovyalov added a subscriber: lldb-commits.
UriParser:Parse expects that host name doesn't contain special URL symbols -
":", ";", "$",...
However, in case of adb protocol (adb://$device_serial_no:$port) it pos
bhushan closed this revision.
bhushan added a comment.
Committed in revision 245020
Repository:
rL LLVM
http://reviews.llvm.org/D11930
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-c
Author: bhushan.attarde
Date: Thu Aug 13 22:40:31 2015
New Revision: 245020
URL: http://llvm.org/viewvc/llvm-project?rev=245020&view=rev
Log:
[MIPS]Handle floating point and aggregate return types in SysV-mips [32 bit] ABI
SUMMARY:
This patch adds support of floating point and aggrega
Author: jingham
Date: Thu Aug 13 20:38:21 2015
New Revision: 244999
URL: http://llvm.org/viewvc/llvm-project?rev=244999&view=rev
Log:
I was assuming that when a bit of inlined code was followed by code from the
inlining site, it was going to execute to the inlining site code, but
apparently that
Author: gclayton
Date: Thu Aug 13 19:18:52 2015
New Revision: 244992
URL: http://llvm.org/viewvc/llvm-project?rev=244992&view=rev
Log:
Add a better fix for searching for spaces in BSD archive object names where we
only trim trailing spaces.
I made an example where I had a file named "testtesttes
chaoren accepted this revision.
chaoren added a comment.
This revision is now accepted and ready to land.
LGTM
http://reviews.llvm.org/D12020
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/ll
zturner added inline comments.
Comment at: test/dosep.py:500
@@ +499,3 @@
+print "\nUnexpected Successes (%d)" % len(unexpected_successes)
+for u in unexpected_successes:
+print "UNEXPECTED SUCCESS: LLDB (suite) :: %s (%s)" % (u,
system_info)
-
zturner updated this revision to Diff 32110.
http://reviews.llvm.org/D12020
Files:
test/dosep.py
Index: test/dosep.py
===
--- test/dosep.py
+++ test/dosep.py
@@ -121,23 +121,28 @@
def parse_test_results(output):
passes = 0
zturner added inline comments.
Comment at: test/dosep.py:266
@@ -259,2 +266,2 @@
timed_out = sum([result[0] for result in test_results], [])
passed = sum([result[1] for result in test_results], [])
chaoren wrote:
> There's a line above this:
> ```
> # re
chaoren added inline comments.
Comment at: test/dosep.py:202
@@ -196,1 +201,3 @@
if status != ePassed]
+xpasses = [name for name, status, _, _, unexpected_successes in results if
unexpected_successes > 0]
+
Don't need status here.
Nit: cou
Author: gclayton
Date: Thu Aug 13 18:16:15 2015
New Revision: 244984
URL: http://llvm.org/viewvc/llvm-project?rev=244984&view=rev
Log:
Don't crash when we have a .a file that contains an object with a 16 character
name. Any calls to std::string::erase must be bounds checked.
Modified:
lld
zturner created this revision.
zturner added a reviewer: chaoren.
zturner added a subscriber: lldb-commits.
New output looks like this:
FAIL: LLDB (suite) :: TestThreadStepOut.py (Windows zturner-win81 8 6.2.9200
AMD64 Intel64 Family 6 Model 45 Stepping 7, GenuineIntel)
FAIL: LLDB (suite) :: Tes
Merged in r244967.
Thanks,
Hans
On Thu, Aug 13, 2015 at 9:54 AM, Greg Clayton wrote:
> Fine to merge.
>
>> On Aug 13, 2015, at 9:33 AM, Hans Wennborg wrote:
>>
>> Greg: you're the owner here. OK for merging to 3.7?
>>
>> On Wed, Aug 12, 2015 at 10:22 PM, Jaydeep Patil
>> wrote:
>>> Hi Hans,
>>
Merged in r244965.
Thanks,
Hans
On Thu, Aug 13, 2015 at 10:48 AM, Greg Clayton wrote:
> Yes, merging this is fine.
>
>> On Aug 13, 2015, at 9:33 AM, Hans Wennborg wrote:
>>
>>
>> Greg: you're the owner here. Approved for 3.7?
>>
>> On Wed, Aug 12, 2015 at 10:21 PM, Jaydeep Patil
>> wrote:
>>>
I've merged this in r244964:
http://llvm.org/viewvc/llvm-project?rev=244964&view=rev
There was a merge conflict in ProcessGDBRemote.cpp, so I'd appreciate
if someone could double check that I got it right. I did verify that
it compiles, but I haven't been able to get the tests running on my
machin
Author: zturner
Date: Thu Aug 13 17:05:54 2015
New Revision: 244963
URL: http://llvm.org/viewvc/llvm-project?rev=244963&view=rev
Log:
Remove Unicode byte-order mark from python files.
This was caused by a bug in the PTVS source file editor, which has
since been fixed and awaiting a new release.
Author: zturner
Date: Thu Aug 13 15:50:17 2015
New Revision: 244951
URL: http://llvm.org/viewvc/llvm-project?rev=244951&view=rev
Log:
Disable lldb-mi tests on Windows.
Most were already XFAIL'ed, but the reason for the XFAIL is that
we don't have a suitable pexpect implementation on Windows. Thi
Author: zturner
Date: Thu Aug 13 15:49:43 2015
New Revision: 244950
URL: http://llvm.org/viewvc/llvm-project?rev=244950&view=rev
Log:
XFAIL Watchpoint tests on Windows.
https://llvm.org/pr24446 tracks getting these tests re-enabled.
Modified:
lldb/trunk/test/functionalities/watchpoint/hello
Yes, merging this is fine.
> On Aug 13, 2015, at 9:33 AM, Hans Wennborg wrote:
>
>
> Greg: you're the owner here. Approved for 3.7?
>
> On Wed, Aug 12, 2015 at 10:21 PM, Jaydeep Patil
> wrote:
>> Hi Hans,
>>
>> Could you please merge it to release branch?
>>
>> Thanks,
>> Jaydeep
>>
>> ---
Fine to merge.
> On Aug 13, 2015, at 9:33 AM, Hans Wennborg wrote:
>
> Greg: you're the owner here. OK for merging to 3.7?
>
> On Wed, Aug 12, 2015 at 10:22 PM, Jaydeep Patil
> wrote:
>> Hi Hans,
>>
>> Could you please merge it to release branch?
>>
>> Thanks,
>> Jaydeep
>>
>> -Original
Fine to merge.
> On Aug 13, 2015, at 9:33 AM, Hans Wennborg wrote:
>
> Greg: you're the owner. Approved for 3.7?
>
> On Wed, Aug 12, 2015 at 10:21 PM, Jaydeep Patil
> wrote:
>> Hi Hans,
>>
>> Could you please merge it to release branch?
>>
>> Thanks,
>> Jaydeep
>>
>> -Original Message--
Greg: you're the owner. Approved for 3.7?
On Wed, Aug 12, 2015 at 10:21 PM, Jaydeep Patil
wrote:
> Hi Hans,
>
> Could you please merge it to release branch?
>
> Thanks,
> Jaydeep
>
> -Original Message-
> From: Jaydeep Patil
> Sent: 13 August 2015 AM 09:15
> To: Jaydeep Patil
> Subject: Re
Greg: you're the owner here. Approved for 3.7?
On Wed, Aug 12, 2015 at 10:21 PM, Jaydeep Patil
wrote:
> Hi Hans,
>
> Could you please merge it to release branch?
>
> Thanks,
> Jaydeep
>
> -Original Message-
> From: Jaydeep Patil
> Sent: 13 August 2015 AM 09:17
> To: Jaydeep Patil
> Subjec
Greg: you're the owner here. OK for merging to 3.7?
On Wed, Aug 12, 2015 at 10:22 PM, Jaydeep Patil
wrote:
> Hi Hans,
>
> Could you please merge it to release branch?
>
> Thanks,
> Jaydeep
>
> -Original Message-
> From: Jaydeep Patil
> Sent: 13 August 2015 AM 09:17
> To: Jaydeep Patil
> S
clayborg accepted this revision.
clayborg added a comment.
This revision is now accepted and ready to land.
Looks good. Feel free to also initialized "is_signed" if you can, no need for
review on that change.
Repository:
rL LLVM
http://reviews.llvm.org/D11930
_
Author: ravitheja
Date: Thu Aug 13 06:53:23 2015
New Revision: 244886
URL: http://llvm.org/viewvc/llvm-project?rev=244886&view=rev
Log:
Removing redundant check from r244875
Modified:
lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
Modified:
lldb/trunk/source/
Author: tberghammer
Date: Thu Aug 13 05:41:55 2015
New Revision: 244881
URL: http://llvm.org/viewvc/llvm-project?rev=244881&view=rev
Log:
Add missing include to RegisterInfoInterface.h
Modified:
lldb/trunk/source/Plugins/Process/Utility/RegisterInfoInterface.h
Modified: lldb/trunk/source/Plu
Author: tberghammer
Date: Thu Aug 13 04:19:27 2015
New Revision: 244877
URL: http://llvm.org/viewvc/llvm-project?rev=244877&view=rev
Log:
Fix Linux build after r244875
Modified:
lldb/trunk/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
Modified:
lldb/trunk/source/Plugin
bhushan updated this revision to Diff 32038.
bhushan added a comment.
Addresses review comments. (Initialized variables with default values).
Repository:
rL LLVM
http://reviews.llvm.org/D11930
Files:
source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
Index: source/Plugins/ABI/SysV-mips/ABISysV
Author: ravitheja
Date: Thu Aug 13 04:05:11 2015
New Revision: 244875
URL: http://llvm.org/viewvc/llvm-project?rev=244875&view=rev
Log:
Set orig_eax to -1 for Linux x86 platforms
Summary:
For Linux x86 based environments the orig_eax/orig_rax
register should be set to -1 to prevent the instructio
41 matches
Mail list logo