Displaying 3 results from an estimated 3 matches for "set_array".
Did you mean:
get_array
2016 Feb 09
2
LoopIdiomRegognize vs Preserved
...ild-all/bin/opt -S -sroa -loop-rotate
-loop-deletion -licm -loop-idiom ../llvm/bugpoint-reduced-simplified.i8+.ll
1. Running pass 'Function Pass Manager' on module
'../llvm/bugpoint-reduced-simplified.i8+.ll'.
2. Running pass 'Loop Pass Manager' on function '@set_array'
3. Running pass 'Recognize loop idioms' on basic block '%bb4'
Abort
/Mikael
On 02/08/2016 05:50 PM, Haicheng Wu wrote:
> Hi Mikael,
>
> What is your compilation command to trig the assert? I am trying to reproduce your problem.
>
> Thank you,
>
> Ha...
2016 Feb 08
2
LoopIdiomRegognize vs Preserved
Hi,
I'm having problems with the LoopIdiomRegognizer crashing on me with
An asserting value handle still pointed to this value!
UNREACHABLE executed at ../lib/IR/Value.cpp:695!
If I remove
AU.addPreserved<LoopInfoWrapperPass>();
or
AU.addPreserved<AAResultsWrapperPass>();
everything goes well.
The C-code triggering this is
void foo(int a[10][10])
{
int i, j,
2016 Feb 10
2
LoopIdiomRegognize vs Preserved
...gt; -loop-deletion -licm -loop-idiom
>> ../llvm/bugpoint-reduced-simplified.i8+.ll
>> 1. Running pass 'Function Pass Manager' on module
>> '../llvm/bugpoint-reduced-simplified.i8+.ll'.
>> 2. Running pass 'Loop Pass Manager' on function '@set_array'
>> 3. Running pass 'Recognize loop idioms' on basic block '%bb4'
>> Abort
>>
>> /Mikael
>>
>> On 02/08/2016 05:50 PM, Haicheng Wu wrote:
>>> Hi Mikael,
>>>
>>> What is your compilation command to trig the asser...