https://llvm.org/bugs/show_bug.cgi?id=25408

            Bug ID: 25408
           Summary: MC doesn't produce errors for thumb branches out of
                    range
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: Backend: ARM
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]
    Classification: Unclassified

Given

        bl      end
        .space 0x3fffff
end:
        bl      end2
        .space 0x400000
end2:


gas produces an error on the second branch if targeting thumb1.

For thumb2, it produces an error on the second branch of

        bl      end
        .space 0x1ffffff
end:
        bl      end2
        .space 0x2000000
end2:

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to