Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pd/bq/bq_cont.C
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ unsigned int bq_spec_reserve() throw() {

#if \
__gcc_version_current >= __gcc_version(3, 3, 0) && \
__gcc_version_current < __gcc_version(4, 7, 0) && \
__gcc_version_current < __gcc_version(4, 8, 0) && \
!defined(__arm__)

struct __cxa_eh_globals {
Expand Down
4 changes: 4 additions & 0 deletions pd/bq/bq_cont_supp.S
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
// This library may be distributed under the terms of the GNU LGPL 2.1.
// See the file ‘COPYING’ or ‘http://www.gnu.org/licenses/lgpl-2.1.html’.

#if defined(__linux__) && defined(__ELF__)
.section .note.GNU-stack,"",%progbits
#endif

.file "bq_cont_supp.S"

#if defined(__i386__)
Expand Down
2 changes: 2 additions & 0 deletions test/bq/align.C
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ bq_spec_decl(int, sp2);

char md[16];

#pragma GCC diagnostic ignored "-Wuninitialized"
void job(void *) {
int k;
char local_md[16];
Expand All @@ -40,6 +41,7 @@ void job(void *) {
md[k] ^= local_md[k];
}
}
#pragma GCC diagnostic pop

bq_cont_count_t cont_count(3);

Expand Down