Ignore:
Timestamp:
08/07/08 03:10:26 (4 years ago)
Author:
godzil
Message:

Apply Lionel Patch (and first real commit on this marvelous fork #hehe#)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tigcc/ld-tigcc/special.c

    r278 r1260  
    754754                                { 
    755755                                        NewValue = Program->Version; 
     756                                        HasValue = TRUE; 
     757                                } 
     758                        } 
     759                        else if (SymNameMatches ("link_time_y")) // Preliminary name 
     760                        { 
     761                                if (Program->ResolveAllBuiltins) 
     762                                { 
     763                                        NewValue = Program->LinkTime.year; 
     764                                        HasValue = TRUE; 
     765                                } 
     766                        } 
     767                        else if (SymNameMatches ("link_time_m")) // Preliminary name 
     768                        { 
     769                                if (Program->ResolveAllBuiltins) 
     770                                { 
     771                                        NewValue = Program->LinkTime.month; 
     772                                        HasValue = TRUE; 
     773                                } 
     774                        } 
     775                        else if (SymNameMatches ("link_time_d")) // Preliminary name 
     776                        { 
     777                                if (Program->ResolveAllBuiltins) 
     778                                { 
     779                                        NewValue = Program->LinkTime.day; 
     780                                        HasValue = TRUE; 
     781                                } 
     782                        } 
     783                        else if (SymNameMatches ("link_time_timestamp")) // Preliminary name 
     784                        { 
     785                                if (Program->ResolveAllBuiltins) 
     786                                { 
     787                                        NewValue = Program->LinkTime.LinkTime; 
    756788                                        HasValue = TRUE; 
    757789                                } 
Note: See TracChangeset for help on using the changeset viewer.