Displaying 3 results from an estimated 3 matches for "thedebuginfo".
2008 Jul 30
0
[LLVMdev] llvm-gcc fortran bootstrap broken
...uot;cgraph.h"
-#include "c-common.h"
}
// Non-zero if bytecode from PCH is successfully read.
int flag_llvm_pch_read;
+// Non-zero if libcalls should not be simplified.
+int flag_no_simplify_libcalls;
+
// Global state for the LLVM backend.
Module *TheModule = 0;
DebugInfo *TheDebugInfo = 0;
@@ -381,7 +383,7 @@
PM->add(createFunctionInliningPass()); // Inline small functions
if (optimize > 2)
PM->add(createArgumentPromotionPass()); // Scalarize uninlined fn args
- if (!flag_no_builtin)
+ if (!flag_no_simplify_libcalls)
PM->add(creat...
2008 Jul 30
4
[LLVMdev] llvm-gcc fortran bootstrap broken
On Jul 30, 2008, at 11:39 AM, Duncan Sands wrote:
> On Wednesday 30 July 2008 18:13:27 Duncan Sands wrote:
>> On x86-64 linux, in stage 2, I get:
>>
>> c++ -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-
>> prototypes -Wmissing-prototypes -pedantic -Wno-long-long -Wno-
>> variadic-macros -Wno-overlength-strings -Wold-style-definition -
>>
2008 Jul 30
1
[LLVMdev] llvm-gcc fortran bootstrap broken
..."
> }
>
> // Non-zero if bytecode from PCH is successfully read.
> int flag_llvm_pch_read;
>
> +// Non-zero if libcalls should not be simplified.
> +int flag_no_simplify_libcalls;
> +
> // Global state for the LLVM backend.
> Module *TheModule = 0;
> DebugInfo *TheDebugInfo = 0;
> @@ -381,7 +383,7 @@
> PM->add(createFunctionInliningPass()); // Inline small
> functions
> if (optimize > 2)
> PM->add(createArgumentPromotionPass()); // Scalarize
> uninlined fn args
> - if (!flag_no_builtin)
> + if (!flag_no_s...