search for: 779e1ae8

Displaying 3 results from an estimated 3 matches for "779e1ae8".

Did you mean: 74ee1ae8
2009 Apr 13
0
[LLVMdev] MemoryDependenceAnalysis
On Apr 13, 2009, at 9:06 AM, Anthony Danalis wrote: > Hello, > > I have a code similar to the following: Hi Anthony, Can you please attach the .bc file for this? -Chris > > > program test > integer i, j, N > real B(10) > > call bar(N, 8) > N = N+1 > do i = 1, N > B(i) =
2009 Apr 13
5
[LLVMdev] MemoryDependenceAnalysis
Hello, I have a code similar to the following: program test integer i, j, N real B(10) call bar(N, 8) N = N+1 do i = 1, N B(i) = (i+5)/(i+3) enddo j = N/2 N = N+7 call IMPORTANT_F(B, N, i, j) end program and I am trying to use dependence
2009 Apr 13
2
[LLVMdev] MemoryDependenceAnalysis
...IR I included in the original email is optimized. -------------- next part -------------- A non-text attachment was scrubbed... Name: simple_loops_F2_4list.bc Type: application/octet-stream Size: 6384 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090413/779e1ae8/attachment.obj> -------------- next part -------------- On Apr 13, 2009, at 2:21 PM, Chris Lattner wrote: > On Apr 13, 2009, at 9:06 AM, Anthony Danalis wrote: >> Hello, >> >> I have a code similar to the following: > > Hi Anthony, > > Can you please attach the...