[llvm-commits] [llvm-gcc-4.0] r41480 - /llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp
Bill Wendling
isanbard at gmail.com
Mon Aug 27 20:42:30 PDT 2007
Thank you. I'm going to be working on it this week and hope to have
the failure fixed soon.
-bw
On Aug 27, 2007, at 5:53 AM, Duncan Sands wrote:
> Author: baldrick
> Date: Mon Aug 27 07:53:48 2007
> New Revision: 41480
>
> URL: http://llvm.org/viewvc/llvm-project?rev=41480&view=rev
> Log:
> Turn on exception handling code generation.
>
> Modified:
> llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp
>
> Modified: llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.0/trunk/gcc/
> llvm-backend.cpp?rev=41480&r1=41479&r2=41480&view=diff
>
> ======================================================================
> ========
> --- llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp (original)
> +++ llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp Mon Aug 27 07:53:48 2007
> @@ -122,9 +122,8 @@
> Args.push_back("--debug-pass=Structure");
> if (flag_debug_pass_arguments)
> Args.push_back("--debug-pass=Arguments");
> -// Disabled until PR1224 is resolved.
> - //if (flag_exceptions)
> - // Args.push_back("--enable-eh");
> + if (flag_exceptions)
> + Args.push_back("--enable-eh");
>
> // If there are options that should be passed through to the
> LLVM backend
> // directly from the command line, do so now. This is mainly
> for debugging
>
>
> _______________________________________________
> 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