Displaying 5 results from an estimated 5 matches for "newcasts".
2008 May 31
2
tolstoi.newcastle dead?
Anyone know what's up w/ tolstoi.newcast.edu.au (home of the threaded
R-help archives)? I've got a "can't connect" for several days now.
Carl
2010 Jan 09
0
[LLVMdev] [PATCH] - Union types, attempt 2
...for unions, but you don't need them since all elements are at offset 0.
> I was a little uncertain as to how to write the tests. I'd particularly like to write tests for the bitcode reader/writer stuff, but I am not sure how to do that.
A reasonable example are tests like test/Feature/newcasts.ll
Here are some thoughts on your patch:
+class UnionType : public CompositeType {
...
+ /// UnionType::get - Create an empty union type.
+ ///
+ static UnionType *get(LLVMContext &Context) {
+ return get(Context, std::vector<const Type*>());
+ }
I don't think that an empty...
2010 Jan 06
3
[LLVMdev] [PATCH] - Union types, attempt 2
This patch adds a UnionType to DerivedTypes.h. It also adds code to the
bitcode reader / writer and the assembly parser for the new type, as well as
a tiny .ll test file in test/Assembler. It does not contain any code related
to code generation or type layout - I wanted to see if this much was
acceptable before I proceeded any further.
Unlike my previous patch, in which the Union type was
2020 May 06
2
Unexpected behavior found in Stack Coloring pass, need clarification
Hello,
I have come across an unusual behavior where instruction domination rule is
violated "Instruction does not dominate all its uses." It concerns with
StackColoring pass present at llvm/lib/CodeGen/StackColoring.cpp. I am
reaching out to the LLVM community to help me understand the cause of this
issue and the working of the pass.
The IR produced at the end of the pass seems to be
2010 Jan 11
2
[LLVMdev] [PATCH] - Union types, attempt 2
...ed them since all
> elements are at offset 0.
>
> I was a little uncertain as to how to write the tests. I'd particularly
> like to write tests for the bitcode reader/writer stuff, but I am not sure
> how to do that.
>
>
> A reasonable example are tests like test/Feature/newcasts.ll
>
> Here are some thoughts on your patch:
>
> +class UnionType : public CompositeType {
> ...
> + /// UnionType::get - Create an empty union type.
> + ///
> + static UnionType *get(LLVMContext &Context) {
> + return get(Context, std::vector<const Type*>...