diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2008-12-17 22:01:17 +0300 |
---|---|---|
committer | Alexey Zaytsev <alexey.zaytsev@gmail.com> | 2008-12-18 20:30:22 +0300 |
commit | c765f350c6473a65f0d6937355dddd198d1317a9 (patch) | |
tree | aaa05f3de4ad1cfe1c5402592063d8b4b892cfcc | |
parent | Remove pre_buffer (diff) | |
download | sparse-c765f350c6473a65f0d6937355dddd198d1317a9.tar.gz sparse-c765f350c6473a65f0d6937355dddd198d1317a9.tar.bz2 sparse-c765f350c6473a65f0d6937355dddd198d1317a9.zip |
Sparc64 (Sparc V9, LP64) support
This patch adds support for Sparc64 (Sparc V9, LP64).
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rwxr-xr-x | cgcc | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -243,6 +243,11 @@ sub add_specs { &integer_types (8, 16, 32, $m64 ? 64 : 32, 64) . &float_types (1, 1, 33, [24,8], [53,11], [113,15]) . &define_size_t ($m64 ? "long unsigned int" : "unsigned int")); + } elsif ($spec eq 'sparc64') { + return (' -Dsparc=1 -D__sparc=1 -D__sparc__=1 -D__sparcv9__=1 -D__sparc64__=1 -D__arch64__=1 -D__LP64__=1' . + &integer_types (8, 16, 32, 64, 64) . + &float_types (1, 1, 33, [24,8], [53,11], [113,15]) . + &define_size_t ("long unsigned int")); } elsif ($spec eq 'x86_64') { return (' -Dx86_64=1 -D__x86_64=1 -D__x86_64__=1' . &integer_types (8, 16, 32, $m32 ? 32 : 64, 64) . @@ -268,6 +273,8 @@ sub add_specs { return &add_specs ('x86_64'); } elsif ($arch =~ /^(ppc)$/i) { return &add_specs ('ppc'); + } elsif ($arch =~ /^(sparc64)$/i) { + return &add_specs ('sparc64'); } } else { die "$0: invalid specs: $spec\n"; |