search for: main_opt

Displaying 3 results from an estimated 3 matches for "main_opt".

2006 Mar 31
5
RoR 1.1 RJS problem
...<!-- main_description --> <%= form_remote_tag(:url => { :action => "show_conf_admin" }, :update => "main") %> <div id="main_content"> -no content- </div> <!-- main_content --> <div id="main_options"> Press Begin to start. <div id="main_buttons"> <%= submit_tag("Begin!") %> </div> <!-- main_buttons --> </div> <!-- main_options --> <%= end_fo...
2011 Sep 15
1
[LLVMdev] LLVM ERROR: Cannot yet select: 0x1fcc5f0: f64 = ConstantFP<0.000000e+00> [ID=4]
...ot;thishost" -DNeedFunctionPrototypes=1 -DSASR -DPROBES=8 -O3 -emit-llvm /home/qali/Develop/Benchmark/MultipleSource/FreeBench/distray/distray.c -o /home/qali/Develop/Benchmark/MultipleSource/FreeBench/distray/distray.bc ~#/home/qali/Build/llvm-2.8-ori/Debug+Asserts/bin/llc -print-before-all main_opt.bc -o main_opt.s Then, the following error happens: *# *** IR Dump Before X86 DAG->DAG Instruction Selection ***:* *# Machine code for function DistribVector:* * * *# End machine code for function DistribVector.* * * *LLVM ERROR: Cannot yet select: 0x1fcc5f0: f64 = ConstantFP<0.000000e+00&g...
2012 Sep 14
1
[PATCH] xenpm: make argument parsing and error handling more consistent
...ret, strerror(ret)); xc_interface_close(xc_handle); - return 0; + return ret; } max_cpu_nr = physinfo.nr_cpus; @@ -1214,14 +1189,18 @@ int main(int argc, char *argv[]) for ( i = 0; i < nr_matches; i++ ) fprintf(stderr, " %s", main_options[matches_main_options[i]].name); fprintf(stderr, "\n"); + ret = EINVAL; } else if ( nr_matches == 1 ) /* dispatch to the corresponding function handler */ main_options[matches_main_options[0]].function(argc - 2, argv + 2); else + {...