Skip to content
  1. Oct 07, 2019
  2. Oct 06, 2019
  3. Oct 05, 2019
  4. Oct 04, 2019
    • Jessica Paquette's avatar
      [MachineOutliner] Disable outlining from noreturn functions · 784892c9
      Jessica Paquette authored
      Outlining from noreturn functions doesn't do the correct thing right now. The
      outliner should respect that the caller is marked noreturn. In the event that
      we have a noreturn function, and the outlined code is in tail position, the
      outliner will not see that the outlined function should be tail called. As a
      result, you end up with a regular call containing a return.
      
      Fixing this requires that we check that all candidates live inside noreturn
      functions. So, for the sake of correctness, don't outline from noreturn
      functions right now.
      
      Add machine-outliner-noreturn.mir to test this.
      
      llvm-svn: 373791
      784892c9
Loading