Displaying 2 results from an estimated 2 matches for "getnumoptions".
2004 Dec 14
0
[LLVMdev] misc. patches
...-- include/llvm/Support/CommandLine.h 5 Dec 2004 05:17:34 -0000 1.40
> +++ include/llvm/Support/CommandLine.h 6 Dec 2004 10:08:04 -0000
> @@ -435,7 +435,7 @@
> typedef DataType parser_data_type;
>
> // Implement virtual functions needed by generic_parser_base
> - unsigned getNumOptions() const { return Values.size(); }
> + unsigned getNumOptions() const { return (unsigned)Values.size(); }
> const char *getOption(unsigned N) const { return Values[N].first; }
> const char *getDescription(unsigned N) const {
> return Values[N].second.second;
>
> ______...
2004 Dec 13
6
[LLVMdev] misc. patches
Hi,
here are some minor patches that for various reasons I've not submitted
yet - I'm just trying to clear my list of differences before christmas...
First of all the clear.patch file contains a patch that enables the JIT
to drop all global mappings. I need this because when I have N threads I
compile N different versions of my functions using different memory
areas for global