diff options
| author | Josh Triplett <josh@freedesktop.org> | 2007-05-23 10:40:15 -0700 |
|---|---|---|
| committer | Josh Triplett <josh@freedesktop.org> | 2007-05-23 10:40:15 -0700 |
| commit | ca2756669993dfbc3c9d15c3954f6296ffc296a6 (patch) | |
| tree | 28814f2b6a1010328c6d49cd2505580fcb889619 /cgcc | |
| parent | fc12753f64f86f6398697ac799aead94034f80dc (diff) | |
| download | sparse-dev-ca2756669993dfbc3c9d15c3954f6296ffc296a6.tar.gz | |
Fix old typo: s/wierd/weird/
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'cgcc')
| -rwxr-xr-x | cgcc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -113,7 +113,7 @@ sub integer_types { while (@types) { my $bits = shift @_; my ($name,$suffix) = @{ shift @types }; - die "$0: wierd number of bits." unless exists $pow2m1{$bits}; + die "$0: weird number of bits." unless exists $pow2m1{$bits}; $result .= " -D__${name}_MAX__=" . $pow2m1{$bits} . $suffix; } return $result; @@ -164,7 +164,7 @@ sub float_types { my ($name,$suffix) = @{ shift @types }; my $h = $constants{$mant_bits}; - die "$0: wierd number of mantissa bits." unless $h; + die "$0: weird number of mantissa bits." unless $h; my $mant_dig = int (($mant_bits - 1) * log (2) / log (10)); my $max_exp = 1 << ($exp_bits - 1); |
