search for: theindex

Displaying 4 results from an estimated 4 matches for "theindex".

2003 Nov 21
2
[LLVMdev] Need Help With Verifier
...(GEP) 4. Store the value 1 at that address (StoreInst). Item 4 represents the StoreInst that the verifier is complaining about. So, below is how I did the above sequence. I thought it was pretty straight forward, but I've obviously done something wrong! In the following, note that "TheIndex" is a GlobalVariable of type "LongTy", "TheStack" is the [1024xint] array that I mentioned above. The BasicBlock variable bb is passed in from a higher level in the compiler's call sequence. void StackerCompiler::incr_stack_index( BasicBlock* bb ) { ConstantInt* i...
2002 Nov 13
1
Package documentation and rd.sty
Hi all, I've got a basic question regarding package documentation and rd.sty. I wrote my first own package, and now I would like to place the documentation into the appendix of another LaTex document. Seemingly I cannot simply \usepackage{Rd}, as this will modify the page-settings of my document. Is there a minimum style file which will just define the environments and commands needed for
2017 Apr 04
3
RFC: Adding a string table to the bitcode format
On Tue, Apr 4, 2017 at 12:36 PM, Duncan P. N. Exon Smith < dexonsmith at apple.com> wrote: > > On 2017-Apr-04, at 12:12, Peter Collingbourne <peter at pcc.me.uk> wrote: > > On Mon, Apr 3, 2017 at 8:13 PM, Mehdi Amini <mehdi.amini at apple.com> wrote: > >> >> On Apr 3, 2017, at 7:08 PM, Peter Collingbourne <peter at pcc.me.uk> wrote: >>
2003 Nov 21
1
[LLVMdev] Linkage Types
...; /tmp/cczhiFk7.o(.text+0x7): In function `a': > : undefined reference to `_index_' _index_ is defined like this: > %_index_ = external global long ; <long*> [#uses=12] But, that's not what I expected to get when I defined it in the compiler like this: > TheIndex = new GlobalVariable( > /*type=*/Type::LongTy, > /*isConstant=*/false, > /*Linkage=*/GlobalValue::LinkOnceLinkage, > /*initializer=*/0, > /*name=*/"_index_", > /*parent=*/TheModule > ); &g...