Skip to content
  • Rafael Espindola's avatar
    1c8ac8f0
    There are two reasons why we might want to use · 1c8ac8f0
    Rafael Espindola authored
    foo = a - b
    .long foo
    instead of just
    .long a - b
    
    First, on darwin9 64 bits the assembler produces the wrong result. Second,
    if "a" is the end of the section all darwin assemblers (9, 10 and mc) will not
    consider a - b to be a constant but will if the dummy foo is created.
    
    Split how we handle these cases. The first one is something MC should take care
    of. The second one has to be handled by the caller.
    
    llvm-svn: 120889
    1c8ac8f0
    There are two reasons why we might want to use
    Rafael Espindola authored
    foo = a - b
    .long foo
    instead of just
    .long a - b
    
    First, on darwin9 64 bits the assembler produces the wrong result. Second,
    if "a" is the end of the section all darwin assemblers (9, 10 and mc) will not
    consider a - b to be a constant but will if the dummy foo is created.
    
    Split how we handle these cases. The first one is something MC should take care
    of. The second one has to be handled by the caller.
    
    llvm-svn: 120889
Loading