diff options
author | Ian Lynagh <igloo@earth.li> | 2008-08-16 13:09:10 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-08-16 13:09:10 +0000 |
commit | 2a20c64269f29c319e16ddd0f6745000b9a98cb2 (patch) | |
tree | aeefb51e11ea469bb8477af815ba01e2ddce43f4 /driver | |
parent | d92b83b91324d24a8caf243a1eedd070cc455b6d (diff) | |
download | haskell-2a20c64269f29c319e16ddd0f6745000b9a98cb2.tar.gz |
Comment fixes; trac #2468
Diffstat (limited to 'driver')
-rw-r--r-- | driver/mangler/ghc-asm.lprl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/mangler/ghc-asm.lprl b/driver/mangler/ghc-asm.lprl index 769681c2a7..7fd1855df3 100644 --- a/driver/mangler/ghc-asm.lprl +++ b/driver/mangler/ghc-asm.lprl @@ -324,7 +324,7 @@ sub init_TARGET_STUFF { #--------------------------------------------------------# } elsif ( $TargetPlatform =~ /^i386-apple-darwin.*/m ) { - # Apple PowerPC Darwin/MacOS X. + # Apple i386 Darwin/MacOS X. $T_STABBY = 0; # 1 iff .stab things (usually if a.out format) $T_US = '_'; # _ if symbols have an underscore on the front $T_PRE_APP = 'DOESNT APPLY'; # regexp that says what comes before APP/NO_APP @@ -353,7 +353,7 @@ sub init_TARGET_STUFF { #--------------------------------------------------------# } elsif ( $TargetPlatform =~ /^x86_64-apple-darwin.*/m ) { - # Apple PowerPC Darwin/MacOS X. + # Apple amd64 Darwin/MacOS X. $T_STABBY = 0; # 1 iff .stab things (usually if a.out format) $T_US = '_'; # _ if symbols have an underscore on the front $T_PRE_APP = 'DOESNT APPLY'; # regexp that says what comes before APP/NO_APP |