[Bug c++/66943] GCC warns of Unknown Pragma for OpenMP, even though it support it.

2015-07-20 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 --- Comment #2 from Jeffrey Walton --- My bad... Here's the error message: g++ -DNDEBUG -g2 -O3 -Wall -march=native -pipe -c nbtheory.cpp nbtheory.cpp:655:0: warning: ignoring #pragma omp parallel [-Wunknown-pragmas] #pragma omp parallel ^ nb

[Bug c++/66943] GCC warns of Unknown Pragma for OpenMP, even though it support it.

2015-07-20 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 --- Comment #4 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #3) > The warning is correct though, maybe it should add a message about needing > -fopenmp to have them to be known. >From a dumb user's point of view (folks like me

[Bug c++/66943] GCC warns of Unknown Pragma for OpenMP, even though it support it.

2015-07-20 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 --- Comment #6 from Jeffrey Walton --- (In reply to Manuel López-Ibáñez from comment #5) > ... > For what is worth, I understand the point by Andrew that without -fopenmp, > the #pragmas are effectively ignored, thus the warning seems useful. Per

[Bug c++/66943] GCC warns of Unknown Pragma for OpenMP, even though it support it.

2015-07-20 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 --- Comment #8 from Jeffrey Walton --- (In reply to Jeffrey Walton from comment #6) > > Maybe it could be in effect with `-Wextra`? > > That would just move the problem somewhere else instead of fixing it. Many > people do compile with -Wall -We

[Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic

2015-07-21 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 --- Comment #13 from Jeffrey Walton --- This issued caused Crypto++ to remove -Wall (and above) under GCC. Crypto++ is C++ with lots of interfaces, and it performs a fair amount of intermediate calculations used in an assert. It really needed the

[Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic

2015-07-22 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 --- Comment #16 from Jeffrey Walton --- (In reply to Jonathan Wakely from comment #15) > (In reply to Jeffrey Walton from comment #13) > > This issued caused Crypto++ to remove -Wall (and above) under GCC. > > That seems to be throwing the baby

[Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic

2015-07-23 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 --- Comment #17 from Jeffrey Walton --- (In reply to Jonathan Wakely from comment #15) > (In reply to Jeffrey Walton from comment #13) > > This issued caused Crypto++ to remove -Wall (and above) under GCC. > > That seems to be throwing the baby

[Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic

2015-07-23 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 --- Comment #20 from Jeffrey Walton --- (In reply to Manuel López-Ibáñez from comment #19) > For what is worth, anyone please feel free to take my WIP patch in comment > #10 and get it finished. You may also claim for yourself any bounty or > com

[Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic

2015-07-23 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 --- Comment #22 from Jeffrey Walton --- (In reply to Jonathan Wakely from comment #18) > ... > Or you could just change the code causing the warnings. Fair enough. There are two warnings that are big offenders. First is the "unused variable" wa

[Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic

2015-07-23 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 --- Comment #24 from Jeffrey Walton --- (In reply to Manuel López-Ibáñez from comment #23) > (In reply to Manuel López-Ibáñez from comment #21) > > Now that you posted a complete example here: > > https://gcc.gnu.org/ml/gcc-help/2015-07/msg00070.

[Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic

2015-07-23 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 --- Comment #25 from Jeffrey Walton --- Jonathan, Manuel, et al - I'm putting this to bed on our side. We've re-enabled -Wall, and are moving towards -Wextra. I did come up with one more use case... The "unused parameter" warning. Typically, I

[Bug c++/67036] New: GCC does not warn of throwing destructors in C++11, even when they lack noexcept(false) and std::uncaught_exception

2015-07-27 Thread noloader at gmail dot com
: 5.1.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- Compiling under -Wall -Wextra does not produce a warning: $ cat

[Bug c++/67036] GCC does not warn of throwing destructors in C++11, even when they lack noexcept(false) and std::uncaught_exception

2015-07-27 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67036 --- Comment #1 from Jeffrey Walton --- > I can state from experience the Visual Studio warning alerted us to look at > a particular dtor, and it was not checking for !std::uncaught_exception() > before throwing. (It was one of two classes among h

[Bug c++/67094] New: Compiling and linking through compiler driver with '-x c++' fails to link with stream of errors

2015-08-02 Thread noloader at gmail dot com
NCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- When compiling the Crypto++ library with CXXFLAGS that includes `-x c++`, the test program fails

[Bug c++/67094] Compiling and linking through compiler driver with '-x c++' fails to link with stream of errors

2015-08-02 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67094 --- Comment #3 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #2) > That -x c++ with .o files are being treated as c++ source and being compiled > and that is what is the error message is saying. The .o file is a binary > file.

[Bug c++/67094] Compiling and linking through compiler driver with '-x c++' fails to link with stream of errors

2015-08-03 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67094 --- Comment #4 from Jeffrey Walton --- Andrew/Everyone(In reply to Andrew Pinski from comment #1) > -x c++ means the input is c++ source no matter what the extension. Sorry to revisit this... According to the GCC docs, GCC should not be changin

[Bug c/57157] Poor optimization of portable rotate idiom

2015-08-11 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57157 Jeffrey Walton changed: What|Removed |Added CC||noloader at gmail dot com --- Comment

[Bug c++/67195] New: cpp and g++ does not define __GLIBCXX__

2015-08-12 Thread noloader at gmail dot com
++ Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- I'm trying to detect a debug build, and enjoy the benefit of additional instrumentation: # Debug testing ifneq ($(filter -DDEBUG -DDEBUG=1 -O0 -O1 -Og,$(CXX

[Bug tree-optimization/65709] [5 Regression] Bad code for LZ4 decompression with -O3 on x86_64

2015-08-12 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65709 --- Comment #19 from Jeffrey Walton --- (In reply to Yann Collet from comment #18) > This issue makes me wonder : how to efficiently access unaligned memory ? > > > The case in point is ARM cpu. > They don't support SSE/AVX, so they seem unaffe

[Bug c++/67195] cpp and g++ does not define __GLIBCXX__

2015-08-13 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67195 --- Comment #2 from Jeffrey Walton --- > > $ uname -a > Linux localhost.localdomain 4.1.3-201.fc22.x86_64 #1 SMP Wed Jul 29 19:50:22 > UTC 2015 x86_64 x86_64 x86_64 GNU/Linux > > $ g++ --version > g++ (GCC) 5.1.1 20150618 (Red Hat 5.1.1-4) > C

[Bug c++/67195] cpp and g++ does not define __GLIBCXX__

2015-08-13 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67195 --- Comment #5 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #3) > (In reply to Jeffrey Walton from comment #2) > > > > > > $ uname -a > > > Linux localhost.localdomain 4.1.3-201.fc22.x86_64 #1 SMP Wed Jul 29 > > > 19:50:22 >

[Bug target/55307] libgcc's __cpu_indicator_init does not check for avx correctly

2015-08-19 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55307 Jeffrey Walton changed: What|Removed |Added CC||noloader at gmail dot com --- Comment

[Bug driver/67301] New: Unable to compile program using extended assembly and asmSymbolicName

2015-08-20 Thread noloader at gmail dot com
Priority: P3 Component: driver Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- The following program: $ cat test.cxx int main(int argc, char* argv[]) { __asm__ __volatile__ ( "\t

[Bug driver/67301] Unable to compile program using extended assembly and asmSymbolicName

2015-08-20 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67301 --- Comment #2 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #1) > Try: > int main(int argc, char* argv[]) > { > __asm__ __volatile__ ( > > "\t movl %[__ARGC], %%eax \n" > : > : [__A

[Bug c++/45411] New: Please add "-Wno-unused-variable" and friends compiler warning options

2010-08-26 Thread noloader at gmail dot com
Summary: Please add "-Wno-unused-variable" and friends compiler warning options Product: gcc Version: unknown Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: noloader at gmail dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45411

[Bug c++/45411] Please add "-Wno-unused-variable" and friends compiler warning options

2010-08-26 Thread noloader at gmail dot com
--- Comment #1 from noloader at gmail dot com 2010-08-26 09:09 --- Though (5) and (8) are specific to me, there's nothing really special about me - there's probably lots of lazy programmers who would also like the warning options. -- http://gcc.gnu.org/bugzilla/show_

[Bug c++/45411] Please add "-Wno-unused-variable" and friends compiler warning options

2010-08-26 Thread noloader at gmail dot com
--- Comment #4 from noloader at gmail dot com 2010-08-26 14:54 --- > You didn't say which version of GCC you're using, but it doesn't really matter > because these options have been in place for many years. Moot point indeed! But for completeness $ gcc --vers

[Bug c++/45553] New: Warning Suppression: C++ Templates, Unsigned, and "comparison of unsigned expression < 0 is always false"

2010-09-05 Thread noloader at gmail dot com
"comparison of unsigned expression < 0 is always false" Product: gcc Version: unknown Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org

[Bug c++/45553] Warning Suppression: C++ Templates, Unsigned, and "comparison of unsigned expression < 0 is always false"

2010-09-05 Thread noloader at gmail dot com
--- Comment #2 from noloader at gmail dot com 2010-09-06 05:35 --- (In reply to comment #1) > > *** This bug has been marked as a duplicate of 11856 *** > Thanks Andrew. For the record, I don't really consider it a bug - its closer to undesired behavior when working

[Bug c++/45553] Warning Suppression: C++ Templates, Unsigned, and "comparison of unsigned expression < 0 is always false"

2010-09-05 Thread noloader at gmail dot com
--- Comment #5 from noloader at gmail dot com 2010-09-06 06:45 --- (In reply to comment #4) > In G++ 4.6+ you can do: > int i; > unsigned j; > > template > void > bar (const T& t) > { > #pragma GCC diagnostic push > #pragma GCC diagnostic ign

[Bug c++/46097] New: Switch to warn of global variables in a C++ shared object

2010-10-20 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 Summary: Switch to warn of global variables in a C++ shared object Product: gcc Version: unknown Status: UNCONFIRMED Severity: enhancement Priority: P3 Co

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-20 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #2 from Jeffrey Walton 2010-10-20 17:33:43 UTC --- (In reply to comment #1) > (In reply to comment #0) > > When a module meets the above compile and runtime requirements, a crash can > > occur in global objects with destructors when m

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-20 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #3 from Jeffrey Walton 2010-10-20 17:38:59 UTC --- (In reply to comment #2) > (In reply to comment #1) > > (In reply to comment #0) > > > When a module meets the above compile and runtime requirements, a crash > > > can > > > occur i

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-20 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #6 from Jeffrey Walton 2010-10-20 23:18:48 UTC --- Hi Johnathon, (In reply to comment #5) > oh, and I only see one process invovled there ... I'm still confused about the > claim that more than one process is involved... My bad - the

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-20 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #8 from Jeffrey Walton 2010-10-21 02:00:51 UTC --- (In reply to comment #4) > I had a look at Cryptopp-SO-Test-1.zip > > > > I can see some value in the warning you want, but it's not going to help if > you > don't use the compile

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #9 from Jeffrey Walton 2010-10-21 15:04:44 UTC --- (In reply to comment #4) > I had a look at Cryptopp-SO-Test-1.zip > > building on 32-bit I can reproduce a segfault > > it doesn't build on 64-bit at all: > > 1) you can insert a p

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #13 from Jeffrey Walton 2010-10-21 16:10:41 UTC --- Hi Jonathon, (In reply to comment #10) > you realise you can wait and it will show up? > http://gcc.gnu.org/ml/gcc-help/2010-10/msg00248.html I've been known to be impatient at time

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #14 from Jeffrey Walton 2010-10-21 16:13:36 UTC --- (In reply to comment #7) > (In reply to comment #6) > > Hi Johnathon, > > (In reply to comment #5) > > > oh, and I only see one process invovled there ... I'm still confused > > > a

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #15 from Jeffrey Walton 2010-10-21 16:15:38 UTC --- (In reply to comment #11) > also, I'm not "the GCC team" and I don't speak for anyone else My apologies. I made the leap that you were part of the team due to your email address.

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #17 from Jeffrey Walton 2010-10-21 16:59:55 UTC --- (In reply to comment #16) > (In reply to comment #13) > > > > Good point: here's what I would recommend: common sense. Myself, Alexey, a > > number of packagers across the globe, an

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #18 from Jeffrey Walton 2010-10-21 17:37:15 UTC --- (In reply to comment #13) > Hi Jonathon, > > (In reply to comment #10) > > you realise you can wait and it will show up? > > http://gcc.gnu.org/ml/gcc-help/2010-10/msg00248.html > I

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #21 from Jeffrey Walton 2010-10-21 18:49:49 UTC --- (In reply to comment #19) > Oh, I never use the search, it's always been useless > > just click on the first month in the list, > http://gcc.gnu.org/ml/gcc-help/2010-10/ shows the m

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #23 from Jeffrey Walton 2010-10-21 19:52:12 UTC --- Hi Jonathan, [Sorry about the top post]. I'm going to wrap up my request, and hope you and the GCC team will find that -Wglobal-variable would be useful under some circumstances.

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #24 from Jeffrey Walton 2010-10-22 01:59:34 UTC --- Hi Jonathan, (In reply to comment #16) > (In reply to comment #13) > > > > [SNIP] > > There are a number of options for making sure the global is private to the > library, thus av

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-21 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #25 from Jeffrey Walton 2010-10-22 05:52:07 UTC --- Created attachment 22112 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=22112 Test for Load/Unload Crash Attached is a test program similar to the program posted on http://gcc.

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-22 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #27 from Jeffrey Walton 2010-10-22 07:37:55 UTC --- (In reply to comment #26) > [SNIP] > Are those libraries that crash designed to be used via dlopen, rather than > linking to them explicitly? I'm not sure. How can one tell?

[Bug c++/46097] Switch to warn of global variables in a C++ shared object

2010-10-22 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46097 --- Comment #28 from Jeffrey Walton 2010-10-22 19:49:26 UTC --- (In reply to comment #26) > I don't think dlmopen has anything to do with C++ namespaces, but I could be > wrong > > Are those libraries that crash designed to be used via dlopen, r

[Bug c++/46513] New: Request: Warning for use of unsafe string handling functions

2010-11-16 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46513 Summary: Request: Warning for use of unsafe string handling functions Product: gcc Version: unknown Status: UNCONFIRMED Severity: enhancement Priority: P3

[Bug c++/46513] Request: Warning for use of unsafe string handling functions

2010-11-16 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46513 --- Comment #2 from Jeffrey Walton 2010-11-17 01:08:22 UTC --- Hi Jonathan, (In reply to comment #1) > The maintainers of GNU libc, the C and C++ committees and the POSIX working > group have not seen fit to include those functions, and they're

[Bug c++/46513] Request: Warning for use of unsafe string handling functions

2010-11-16 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46513 --- Comment #3 from Jeffrey Walton 2010-11-17 02:04:14 UTC --- (In reply to comment #1) > The maintainers of GNU libc, the C and C++ committees and the POSIX working > group have not seen fit to include those functions, and they're not available

[Bug c++/46513] Request: Warning for use of unsafe string handling functions

2010-11-16 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46513 --- Comment #4 from Jeffrey Walton 2010-11-17 03:49:44 UTC --- (In reply to comment #2) > Hi Jonathan, > > (In reply to comment #1) > > The maintainers of GNU libc, the C and C++ committees and the POSIX working > > group have not seen fit to in

[Bug pch/40272] error using precompiled headers with extra debug info (-g3)

2010-12-05 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40272 Jeffrey Walton changed: What|Removed |Added CC||noloader at gmail dot com --- Comment

[Bug pch/40272] error using precompiled headers with extra debug info (-g3)

2010-12-05 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40272 --- Comment #4 from Jeffrey Walton 2010-12-05 14:01:18 UTC --- Created attachment 22643 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=22643 GCC crash on precompiled header, -g3, and empty file

[Bug c/49467] New: Enhancement: Intrinsic to read CARRY and OVERFLOW flags (where applicable)

2011-06-18 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49467 Summary: Enhancement: Intrinsic to read CARRY and OVERFLOW flags (where applicable) Product: gcc Version: unknown Status: UNCONFIRMED Severity: enhancement Priorit

[Bug c++/49670] New: internal compiler error: in extract_insn, at recog.c:2104

2011-07-07 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 Summary: internal compiler error: in extract_insn, at recog.c:2104 Product: gcc Version: 4.5.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component

[Bug target/49670] internal compiler error: in extract_insn, at recog.c:2104

2011-07-07 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 --- Comment #1 from Jeffrey Walton 2011-07-08 00:45:17 UTC --- Using the stock Crypto++ makefile did not help: g++ -DNDEBUG -g -O2 -mtune=native -pipe -c 3way.cpp g++ -DNDEBUG -g -O2 -mtune=native -pipe -c adler32.cpp g++ -DNDEBUG -g -O2 -mtune=

[Bug target/49670] internal compiler error: in extract_insn, at recog.c:2104

2011-07-07 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 --- Comment #2 from Jeffrey Walton 2011-07-08 00:47:53 UTC --- For completeness, here's the function (http://www.cryptopp.com/docs/ref/asn_8cpp_source.html): 00244 void OID::DEREncode(BufferedTransformation &bt) const 00245 { 00246 asser

[Bug target/49670] internal compiler error: in extract_insn, at recog.c:2104

2011-07-08 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 --- Comment #4 from Jeffrey Walton 2011-07-08 08:07:43 UTC --- (In reply to comment #0) > Sorry if this was previously reported. Searching returned an error stating I > used an invalid file extension. > > I was attempting to compile the latest C

[Bug target/49670] internal compiler error: in extract_insn, at recog.c:2104

2011-07-08 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 --- Comment #5 from Jeffrey Walton 2011-07-08 08:35:11 UTC --- Created attachment 24710 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=24710 File asn.s from class file causing internal compiler error

[Bug target/49670] internal compiler error: in extract_insn, at recog.c:2104

2011-07-08 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 --- Comment #6 from Jeffrey Walton 2011-07-08 08:35:55 UTC --- Created attachment 24711 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=24711 File asn.ii from class causing internal compiler error

[Bug target/49670] internal compiler error: in extract_insn, at recog.c:2104

2011-07-08 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 --- Comment #7 from Jeffrey Walton 2011-07-08 08:36:08 UTC --- (In reply to comment #3) > Please add all information and especially preprocessed source, as explained in > http://gcc.gnu.org/bugs/#detailed Crypto++ sources: `svn checkout https://

[Bug target/49670] internal compiler error: in extract_insn, at recog.c:2104

2011-07-08 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 --- Comment #9 from Jeffrey Walton 2011-07-08 09:51:21 UTC --- (In reply to comment #8) > The included source compiles OK for me with: > > ~/gcc-build/gcc/cc1plus -quiet -O2 -m32 -g -fstack-protector -march=prescott > -mtune=prescott --param l1-

[Bug target/49670] internal compiler error: in extract_insn, at recog.c:2104

2011-07-08 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49670 --- Comment #10 from Jeffrey Walton 2011-07-09 03:32:20 UTC --- (In reply to comment #8) > The included source compiles OK for me with: > > ~/gcc-build/gcc/cc1plus -quiet -O2 -m32 -g -fstack-protector -march=prescott > -mtune=prescott --param l1

[Bug c/49820] Explicit check for integer negative after abs optimized away

2011-07-23 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49820 Jeffrey Walton changed: What|Removed |Added CC||noloader at gmail dot com --- Comment

[Bug c/49820] Explicit check for integer negative after abs optimized away

2011-07-23 Thread noloader at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49820 --- Comment #6 from Jeffrey Walton 2011-07-23 22:28:07 UTC --- (In reply to comment #5) > > CPUs which use 2s compliment representations are usually well equipped to > > deal > > with overflow and carry. I would claim a result which overflows is

[Bug c++/71767] New: Endless stream of warnings when using GCC with -Wa,-q and Clang Integrated Assembler

2016-07-05 Thread noloader at gmail dot com
Severity: minor Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- When using MacPorts GCC on OS X and enlisting the Clang Integrated Assembler via -Wa,-q, the assembler produces a

[Bug c++/71767] Endless stream of warnings when using GCC with -Wa,-q and Clang Integrated Assembler

2016-07-05 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71767 --- Comment #1 from Jeffrey Walton --- Also see LLVM Issue 28427, "Endless stream of warnings when using GCC with -Wa,-q and Clang Integrated Assembler", https://llvm.org/bugs/show_bug.cgi?id=28427.

[Bug c++/71811] New: gcc6/c++/functional:1726:40: internal compiler error: in assign_temp, at function.c:961

2016-07-07 Thread noloader at gmail dot com
Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- Created attachment 38862 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=38862&action=edit Prepr

[Bug c/71812] New: gcc6/c++/functional:1726:40: internal compiler error: in assign_temp, at function.c:961

2016-07-07 Thread noloader at gmail dot com
Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- I'm working on OS X 10.8.5 with MacPorts 2.3.4 installed. I'm attempting to compile Jack Lloyd

[Bug c/71812] gcc6/c++/functional:1726:40: internal compiler error: in assign_temp, at function.c:961

2016-07-07 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71812 --- Comment #1 from Jeffrey Walton --- > I can't submit pubkey_pkcs8.ii.zip. It appears to be causing Gateway > Timeouts. The preprocessed source file is available at https://trac.macports.org/ticket/51796#no1

[Bug c/71812] gcc6/c++/functional:1726:40: internal compiler error: in assign_temp, at function.c:961

2016-07-08 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71812 --- Comment #4 from Jeffrey Walton --- (In reply to Richard Biener from comment #3) > Duplicate of PR71811? Yes, it looks like a duplicate. GCC's bug tracker search feature absolutely sucks. Did Microsoft provide it free of charge?

[Bug c/71812] gcc6/c++/functional:1726:40: internal compiler error: in assign_temp, at function.c:961

2016-07-08 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71812 --- Comment #6 from Jeffrey Walton --- (In reply to Richard Biener from comment #3) > Duplicate of PR71811? My bad... That's the same bug report. When attempting to include the preprocessed source file in the original report, I kept getting "Ga

[Bug c++/71811] gcc6/c++/functional:1726:40: internal compiler error: in assign_temp, at function.c:961

2016-07-08 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71811 --- Comment #2 from Jeffrey Walton --- Also see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=71210 (thanks JJ).

[Bug driver/71930] New: g++ invokes the wrong preprocessor

2016-07-19 Thread noloader at gmail dot com
Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- I don't believe this is expected behavior, especially since (1) g++ is being used, and (2) -std=c++17 is being used. $ /opt/local/bin/g++ -std=c++17 -dM -E -

[Bug driver/71930] g++ invokes the wrong preprocessor

2016-07-19 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71930 --- Comment #2 from Jeffrey Walton --- (In reply to Jakub Jelinek from comment #1) > What makes you think that this is a bug? I think its a bug (1) g++ is being used, and (2) -std=c++17 is being used. What does a file extension have to do with a

[Bug driver/71930] g++ invokes the wrong preprocessor

2016-07-19 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71930 --- Comment #4 from Jeffrey Walton --- (In reply to Jakub Jelinek from comment #3) > (1) so what? I suppose I should thank my lucky stars g++ did not invoke the preprocessor for Fortran or Java then. Maybe GCC could make it round robin so defin

[Bug target/72736] New: warning: switch -mcpu=cortex-a53 conflicts with -march=armv8-a switch

2016-07-28 Thread noloader at gmail dot com
Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- This looks like an issue similar to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57907. My apologies if it has already been fixed

[Bug target/72737] New: warning: switch -mcpu=cortex-a53 conflicts with -march=armv8-a switch

2016-07-28 Thread noloader at gmail dot com
Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- This looks like an issue similar to http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57907. It also appears similar to http

[Bug driver/70132] ARM -mcpu=native can cause a double free abort.

2016-07-28 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70132 Jeffrey Walton changed: What|Removed |Added CC||noloader at gmail dot com --- Comment

[Bug driver/70132] ARM -mcpu=native can cause a double free abort.

2016-07-28 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70132 --- Comment #14 from Jeffrey Walton --- (In reply to ktkachov from comment #8) > Fixed on trunk for now. > Will backport after some time to the branches Bump... I don't think this has made it into Debian's 4.9.2-10.

[Bug target/72736] warning: switch -mcpu=cortex-a53 conflicts with -march=armv8-a switch

2016-07-28 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72736 --- Comment #4 from Jeffrey Walton --- Thanks, and sorry to waste your time with it. Before I spin up another report that wastes a lot time, does this look like another issue with me (likely), or an issue with GCC (unlikely): internal compiler

[Bug target/72738] New: internal compiler error: in expand_shift_1, at expmed.c:2318

2016-07-28 Thread noloader at gmail dot com
Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- Created attachment 39027 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39027&action=edit Preprocessed source file. Raspber

[Bug target/72736] warning: switch -mcpu=cortex-a53 conflicts with -march=armv8-a switch

2016-07-28 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72736 --- Comment #6 from Jeffrey Walton --- (In reply to James Greenhalgh from comment #5) > (In reply to Jeffrey Walton from comment #4) > > Thanks, and sorry to waste your time with it. > > > > Before I spin up another report that wastes a lot time

[Bug target/72738] internal compiler error: in expand_shift_1, at expmed.c:2318

2016-07-28 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72738 --- Comment #2 from Jeffrey Walton --- (In reply to James Greenhalgh from comment #1) > Testcase needs a #include to compile, but otherwise confirmed > from GCC 4.9 through to trunk. > > Note that it isn't immediately clear that this is valid c

[Bug target/72738] internal compiler error: in expand_shift_1, at expmed.c:2318

2016-07-28 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72738 --- Comment #3 from Jeffrey Walton --- (In reply to Jeffrey Walton from comment #2) > (In reply to James Greenhalgh from comment #1) > > Testcase needs a #include to compile, but otherwise confirmed > > from GCC 4.9 through to trunk. > > > > No

[Bug target/72758] New: GCC 4.9.2 on Aarch64 missing vreinterpretq_u64_p128 and friends

2016-07-29 Thread noloader at gmail dot com
Priority: P3 Component: target Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- Created attachment 39035 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39035&action=edit Preprocessed test.cc I'm

[Bug target/72758] GCC 4.9.2 on Aarch64 missing vreinterpretq_u64_p128 and friends

2016-07-29 Thread noloader at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72758 --- Comment #3 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #2) > Note the testcase is wrong (but only slightly). Oh, you're right, thanks. That code was tested on the RPI3 to ensure it compiled as expected under Aarch32. Usi

[Bug target/82735] _mm256_zeroupper does not invalidate previously computed registers

2021-04-24 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82735 --- Comment #5 from Jeffrey Walton --- I think we are seeing this bug in the field. We are catching lots of failed self tests as we test on multiple platforms, including Ubuntu 14 ERS and Ubuntu 16 LTS. The problem makes GCC 4.8.4 through 7.5 pr

[Bug target/82735] _mm256_zeroupper does not invalidate previously computed registers

2021-04-24 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82735 --- Comment #6 from Jeffrey Walton --- Add 9.3 to the know to fail list: $ gcc --version gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0 Copyright (C) 2019 Free Software Foundation, Inc.

[Bug middle-end/93644] [10/11 Regression] spurious -Wreturn-local-addr with PHI of PHI

2020-12-16 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93644 --- Comment #13 from Jeffrey Walton --- On Wed, Dec 16, 2020 at 9:05 PM eggert at cs dot ucla.edu wrote: > ... > (B) there's no way to shut off the false alarm, not even with '# pragma GCC > diagnostic ignored "-Wreturn-local-addr"'. https://gc

[Bug c++/98416] New: POWER8: SIGILL handler does not restart properly after signal using GCC 10.2.1

2020-12-21 Thread noloader at gmail dot com via Gcc-bugs
: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- Created attachment 49827 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=49827&action=edit preprocessed ppc_pow

[Bug c++/98416] POWER8: SIGILL handler does not restart properly after signal using GCC 10.2.1

2020-12-21 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98416 --- Comment #1 from Jeffrey Walton --- Created attachment 49831 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=49831&action=edit Disassembly of ppc_power9.o Created with 'objdump --disassemble ppc_power9.o | c++filt > ppc_power9.disass'.

[Bug c++/98416] POWER8: SIGILL handler does not restart properly after signal using GCC 10.2.1

2020-12-21 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98416 --- Comment #3 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #2) > This is invalid. > The instruction which is failing is: > 9c: f0 00 02 d0 xxspltib vs0,0 > > Which is only valid in power9 and above. > You need to mark CP

[Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic

2021-02-27 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 --- Comment #40 from Jeffrey Walton --- Still a problem in 2021.

[Bug target/96168] GCC support for Apple Silicon (Arm64) on macOS requested

2021-04-26 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96168 Jeffrey Walton changed: What|Removed |Added CC||noloader at gmail dot com --- Comment

[Bug c++/106568] New: -freorder-blocks-algorithm appears to causes a crash in stable code, no way to disable it

2022-08-08 Thread noloader at gmail dot com via Gcc-bugs
Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: noloader at gmail dot com Target Milestone: --- Hi Everyone, This is going to be a shitty bug report because we don't have a reproducer. We believe we

[Bug rtl-optimization/106568] -freorder-blocks-algorithm appears to causes a crash in stable code, no way to disable it

2022-08-08 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106568 --- Comment #5 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #3) > Though there might be an EH issue but there has not been an EH issue for a > long time . This is an interesting observation. The stack trace shows frame #0 is

[Bug rtl-optimization/106568] -freorder-blocks-algorithm appears to causes a crash in stable code, no way to disable it

2022-08-08 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106568 --- Comment #7 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #6) > >And the program does not take the exception path. Instead it segfaults. > > If I read the backtrace correctly, it is trying to resume an unwind because > it d

[Bug rtl-optimization/106568] -freorder-blocks-algorithm appears to causes a crash in stable code, no way to disable it

2022-08-08 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106568 --- Comment #9 from Jeffrey Walton --- (In reply to Andrew Pinski from comment #8) > (In reply to Jeffrey Walton from comment #7) > > Try putting a breakpoint on the following functions: > _Unwind_RaiseException > _Unwind_ForcedUnwind > _Unwind

[Bug rtl-optimization/106568] -freorder-blocks-algorithm appears to causes a crash in stable code, no way to disable it

2022-08-08 Thread noloader at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106568 --- Comment #10 from Jeffrey Walton --- I'm not sure if this is helpful, but Valgrind is showing invalid reads in the unwind gear: $ valgrind ./cryptest.exe vv 51 ==27339== Memcheck, a memory error detector ==27339== Copyright (C) 2002-2022, an

<    1   2   3   >