Displaying 2 results from an estimated 2 matches for "finode".
Did you mean:
inode
2008 Dec 10
0
[LLVMdev] ARM Debug support patch
...SDValue Chain = Op.getOperand(0);
+ SDValue N1 = Op.getOperand(1);
+ SDValue N2 = Op.getOperand(2);
+
+ if (!isa<FrameIndexSDNode>(N1))
+ break;
+
+ int FI = cast<FrameIndexSDNode>(N1)->getIndex();
Something like this will be better:
FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(N1);
if (!FINode)
break;
int FI = FINode->getIndex();
I'll fix these minor issues and commit the patch for you. Thanks for
your contribution!
Evan
On Dec 10, 2008, at 8:38 AM, Mike-1 wrote:
>
> Hi all,
>
> FlexyCore,...
2008 Dec 10
6
[LLVMdev] ARM Debug support patch
Hi all,
FlexyCore, the company I am working for, use LLVM to generate binary for ARM
platform. We are very fulfilled with LLVM, and FlexyCore will be pleased to
contribute on this software.
We need debug support in ARM binary, but, in LLVM 2.4, this support is not
activated for ARM backend. Consequently, I made small modifications in order
to activate it (see the patch in attach file). My