[llvm-commits] [llvm-gcc-4.2] r67888 - /llvm-gcc-4.2/trunk/gcc/llvm-debug.cpp

Bill Wendling isanbard at gmail.com
Sat Mar 28 14:16:25 PDT 2009


I recommitted this. Dale pointed out a flaw in my build bot scripts.

-bw

On Mar 27, 2009, at 6:09 PM, Dale Johannesen wrote:

> Author: johannes
> Date: Fri Mar 27 20:09:34 2009
> New Revision: 67888
>
> URL: http://llvm.org/viewvc/llvm-project?rev=67888&view=rev
> Log:
> Revert previous patch while I check out bootstrap
> breakage.  Funny, worked last night.
>
>
> Modified:
>    llvm-gcc-4.2/trunk/gcc/llvm-debug.cpp
>
> Modified: llvm-gcc-4.2/trunk/gcc/llvm-debug.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/llvm-debug.cpp?rev=67888&r1=67887&r2=67888&view=diff
>
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> --- llvm-gcc-4.2/trunk/gcc/llvm-debug.cpp (original)
> +++ llvm-gcc-4.2/trunk/gcc/llvm-debug.cpp Fri Mar 27 20:09:34 2009
> @@ -307,9 +307,13 @@
> }
>
> /// EmitStopPoint - Emit a call to llvm.dbg.stoppoint to indicate a  
> change of
> -/// source line - "llvm.dbg.stoppoint."  Now enabled with -O.
> +/// source line - "llvm.dbg.stoppoint."
> void DebugInfo::EmitStopPoint(Function *Fn, BasicBlock *CurBB) {
>
> +  // Do not emit line number info, for now.
> +  if (optimize)
> +    return;
> +
>   // Don't bother if things are the same as last time.
>   if (PrevLineNo == CurLineNo &&
>       PrevBB == CurBB &&
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits




More information about the llvm-commits mailing list