Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-18 | Backport fix for gcc bug #10692. Fixes code generation for htons() | Otto Moerbeek | |
on i386 with -march=i686 -O2. Problem report and nice test program by chefren at pi dot net. Note that the fix is in non-target specific code, even while the gcc people classified this as a m68k bug. ok deraadt@ | |||
2006-01-13 | Adapt to the machine/_types.h changes; size_t and ptrdiff_t are now | Todd C. Miller | |
defined in terms of long, not int on all architectures. | |||
2006-01-06 | Include <sys/types.h> and don't define away __size_t | Todd C. Miller | |
Based on existing bits for FreeBSD 5 | |||
2005-12-22 | Install header files for MMX/SSE intrinsics on amd64 too. | Mark Kettenis | |
ok pval@ | |||
2005-12-13 | Don't define _BIG_ENDIAN on macpcc, only __BIG_ENDIAN__. | Todd C. Miller | |
Adapted from netbsd.h. OK drahn@ deraadt@ | |||
2005-10-19 | Teach unwinder about StackGhost. | Mark Kettenis | |
ok deraadt@ | |||
2005-08-01 | Change the compilers default scheduling settings from PA-8000 (4 instructions | Miod Vallat | |
in parallel) to PA-700 (no parallel instructions) on 32-bit hppa. This causes gcc to produce slightly faster code on most supported hppa, no change in code size. Tested by marcop@, mickey@, I and a few others; ok mickey@ | |||
2005-05-25 | spelling fixes | David Krause | |
2005-04-23 | fix WCHAR_TYPE* | Marc Espie | |
okay drahn@, tested alek@ | |||
2005-04-16 | Tell gcc -Wformat that our kprintf implementation understands %q and %ll | Chad Loder | |
for quads. OK deraadt@, some comments millert@ | |||
2005-04-15 | pedantic fix for wchar type inside gcc. | Marc Espie | |
checked through a make release by drahn@ | |||
2005-04-08 | amd64 canonicalization. | Mark Kettenis | |
ok deraadt@, pvalchev@ | |||
2005-03-29 | Switch i386 over to DWARF-based exception handling. | Mark Kettenis | |
ok deraadt@ | |||
2005-03-29 | Plug a memory leak. From gcc 3.4 branch. | Miod Vallat | |
2005-02-10 | -ftrampolines, not -ftrampoline; | Jason McIntyre | |
from moritz grimm; ok espie@ | |||
2005-02-07 | zap sp64elf.h, get the only config part really used (PREFERRED_DEBUGGING_TYPE) | Marc Espie | |
into openbsd64.h. Keep the other stuff in #if 0 for now. okay miod@, brad@, pval@... | |||
2005-02-06 | disallow trampolines by default. okay miod@, jmc@ | Marc Espie | |
2005-02-05 | -dynamic-linker ld.so is NOT a normal object file. Fixes issues in trying | Marc Espie | |
to build a gcc3 sparc. (reviewed and accepted upstream) | |||
2005-02-04 | unfuck amd64 | Peter Valchev | |
2005-01-25 | hppa64-unknown-openbsd build support; espie@ miod@ brad@ ok | Michael Shalayeff | |
2005-01-25 | simplify OpenBSD case by using arch(1) and sed to grab | Brad Smith | |
the machine architecture. We now output amd64 instead of x86_64 as it should be. ok deraadt@ pvalchev@ | |||
2005-01-24 | get rid of i386elf.h which is an embedded platform include. | Marc Espie | |
Get the only define we want, namely the debugger registers. with this, i386 emits dwarf2 by default. Considering how well stabs are tested in recent gcc (not), this is a good thing. Sleuthing work by kettenis@ and me. Tried out by lots of people, including me, naddy, pvalchev, kettenis, henning, hshoexer... | |||
2005-01-24 | add the availability check of reg_renumber array. | Hiroaki Etoh | |
ok pvalchev@ | |||
2005-01-14 | handle sentinel for real. Code, taken from gcc 4.0, which was based on | Marc Espie | |
my design. okay millert@, otto@. | |||
2005-01-02 | add zaurus, fix cats entry. ok jakob@ pvalchev@ deraadt@ | Dale Rahn | |
2005-01-02 | -fzero-initialized-in-bss is wrong, meaning code that | Ted Unangst | |
depends on zero initialized variables showing up in data fails. turn it off by default. ok deraadt@ miod@ | |||
2004-12-30 | gcc 3.3.5 loop optimization will produce incorrect output on powerpc; a | Miod Vallat | |
victim of this being awk(1), which in turn caused some manual pages to be generated without dates at the bottom. Since this is fixed by the (invasive) loop optimization rewrite done for 3.4, we can not expect a 3.3 fix anytime soon, and the fix is non-trivial, so disable the failing section of code on powerpc only. This has the net effect of magically turning -O1 and -O2 into -Os as far as -floop-optimize is concerned. Problem spotted by deraadt@, researched by otto@ and yours truly; this workaround agreed by many. | |||
2004-12-26 | Remove duplicate definition of LONG_DOUBLE_TYPE_SIZE, and shrink WINT_TYPE | Miod Vallat | |
to 32 bits, as done on all other OpenBSD platforms. ok espie@ | |||
2004-12-25 | zap this too | Marc Espie | |
2004-12-25 | solve remaining conflicts | Marc Espie | |
2004-12-25 | update those manually, since cvs got confused. | Marc Espie | |
2004-12-25 | propolice marker | Marc Espie | |
2004-12-25 | new stacknote.s can't depend on stmp-dirs either or our make will rebuild stuff | Marc Espie | |
during install. | |||
2004-12-25 | revert to cast-as-lvalues being pedantic warnings for now. | Marc Espie | |
2004-12-25 | some new i386-specific include files. Adjust directory name. | Marc Espie | |
2004-12-24 | gcc 3.3.5 | Marc Espie | |
2004-11-02 | Do not enable -fdelete-null-pointer-checks at -O2 by default on OpenBSD. | Miod Vallat | |
This optimizations is really cool, but it does not work for complex code; we had to disable it for Perl 5.8 to run correctly, now it turns out it broke Bind 9 on powerpc, so neuter it for good. ok deraadt@ henning@ millert@ others@ | |||
2004-11-02 | Prevent gcc from generating bogus constructs such as | Miod Vallat | |
fdtox %f8, %f7 which are incorrect, and caused wrong code to be generated by gas 2.14; now gas 2.15 will reject such code. Obtained from gcc PR #10904. | |||
2004-10-27 | Add support to find DWARF call fame info in shared libraries. | Mark Kettenis | |
This makes DWARF-based exception handling work for shared libraries and dynamic executables. ok drahn@, millert@, pval@ | |||
2004-10-21 | Move the cross glue from the root makefile to the toolchain's, | Alexander Yurchenko | |
allowing bulding cross-tools with new binutils and gcc3. ok drahn@ brad@ espie@ | |||
2004-09-15 | better check for ro/data section allocation | Michael Shalayeff | |
2004-09-06 | Add t-openbsd64 to handle some libgcc.a build issues (needed functions) | Per Fogelstrom | |
Change configuration to mips64 with default ABI = N64 (enhanced 64 bit ABI) we also support the older O32 and N32 abi for building boot stuff. | |||
2004-08-28 | we don't need this file | Per Fogelstrom | |
2004-08-12 | Avoid dereferencing outside the bounds of an array. Found by mmap | Todd C. Miller | |
malloc and reproducible via guard pages. OK deraadt@ miod@ tdeval@ | |||
2004-08-11 | Pick common code for trampoline mprotect() code. This did not work at all | Miod Vallat | |
on amd64 and was working on sparc64 by sheer luck (because we are not Solaris). | |||
2004-08-04 | Fix propolice merge error in options list. | Miod Vallat | |
2004-07-27 | Don't override PREFERRED_DEBUGGING_TYPE. This makes DWARF2 the default | Mark Kettenis | |
again; stabs doesn't work for 64-bit code. ok miod@, espie@ | |||
2004-07-20 | Do not provide builtins for strcpy() and strcat(), as done with gcc 2, on | Miod Vallat | |
the sole purpose of making these easier to spot and exterminate. tested by various people on amd64 and I on arm&sparc64, ok deraadt@ | |||
2004-06-20 | ICE with gcc3/propolice -O on macppc fixes: | Hiroaki Etoh | |
- INSN_CODE and LOG_LINKS attributes should be copied from the first insn of splitted insns. ok pvalchev@ and sturm@ | |||
2004-05-26 | neede for dhared libs | Michael Shalayeff | |