Re: [PATCH] D14149: __builtin_signbit fix for ppcf128 type

2015-11-01 Thread Aleksandar Beserminji via cfe-commits
abeserminji updated this revision to Diff 38795. abeserminji added a comment. Modified comments as suggested by @rjmccall Repository: rL LLVM http://reviews.llvm.org/D14149 Files: lib/CodeGen/CGBuiltin.cpp test/Analysis/builtin_signbit.cpp Index: test/Analysis/builtin_signbit.cpp

Re: [PATCH] D14149: __builtin_signbit fix for ppcf128 type

2015-11-06 Thread Aleksandar Beserminji via cfe-commits
abeserminji updated this revision to Diff 39513. abeserminji marked 2 inline comments as done. abeserminji added a comment. Comment modified Repository: rL LLVM http://reviews.llvm.org/D14149 Files: lib/CodeGen/CGBuiltin.cpp test/Analysis/builtin_signbit.cpp Index:

r320351 - [mips] Removal of microMIPS64R6

2017-12-11 Thread Aleksandar Beserminji via cfe-commits
Author: abeserminji Date: Mon Dec 11 03:29:17 2017 New Revision: 320351 URL: http://llvm.org/viewvc/llvm-project?rev=320351=rev Log: [mips] Removal of microMIPS64R6 microMIPS64R6 is removed from backend, and therefore frontend will show an error when target is microMIPS64R6. This is Clang part

r331640 - [mips] Improve handling of -fno-[pic/PIC] option

2018-05-07 Thread Aleksandar Beserminji via cfe-commits
Author: abeserminji Date: Mon May 7 07:30:49 2018 New Revision: 331640 URL: http://llvm.org/viewvc/llvm-project?rev=331640=rev Log: [mips] Improve handling of -fno-[pic/PIC] option In order to disable PIC and to match GCC behaviour, -mno-abicalls option is neccessary. When -fno-[pic/PIC] is

r331636 - [mips] Improve handling of -fno-[pic/PIC] option

2018-05-07 Thread Aleksandar Beserminji via cfe-commits
Author: abeserminji Date: Mon May 7 07:19:54 2018 New Revision: 331636 URL: http://llvm.org/viewvc/llvm-project?rev=331636=rev Log: [mips] Improve handling of -fno-[pic/PIC] option In order to disable PIC and to match GCC behaviour, -mno-abicalls option is neccessary. When -fno-[pic/PIC] is

r331639 - Revert "[mips] Improve handling of -fno-[pic/PIC] option"

2018-05-07 Thread Aleksandar Beserminji via cfe-commits
Author: abeserminji Date: Mon May 7 07:28:42 2018 New Revision: 331639 URL: http://llvm.org/viewvc/llvm-project?rev=331639=rev Log: Revert "[mips] Improve handling of -fno-[pic/PIC] option" This reverts commit r331636. Forgot to add the test case. Modified:

r330118 - [mips] Prevent PIC to be set to level 2

2018-04-16 Thread Aleksandar Beserminji via cfe-commits
Author: abeserminji Date: Mon Apr 16 03:21:24 2018 New Revision: 330118 URL: http://llvm.org/viewvc/llvm-project?rev=330118=rev Log: [mips] Prevent PIC to be set to level 2 MIPS does not use PIC level 2 for historical reasons, even with -fPIC/-mxgot/multigot options. This patch prevents PIC to

r346124 - [mips][msa] Fix broken test

2018-11-05 Thread Aleksandar Beserminji via cfe-commits
Author: abeserminji Date: Mon Nov 5 02:22:51 2018 New Revision: 346124 URL: http://llvm.org/viewvc/llvm-project?rev=346124=rev Log: [mips][msa] Fix broken test Test builtins-mips-msa-error.c wasn't reporting errors. This patch fixes the test, so further test cases can be added. Differential

r346302 - [mips][msa] Fix msa_[st/ld] offset check

2018-11-07 Thread Aleksandar Beserminji via cfe-commits
Author: abeserminji Date: Wed Nov 7 03:37:05 2018 New Revision: 346302 URL: http://llvm.org/viewvc/llvm-project?rev=346302=rev Log: [mips][msa] Fix msa_[st/ld] offset check This patch fixes a minimum divider for offset in intrinsics msa_[st/ld]_[b/h/w/d], when value is known in compile time.