Displaying 2 results from an estimated 2 matches for "instruction3".
Did you mean:
instruction
2016 Jan 21
3
a bundle with one instruction
> No. Bundles with single instructions are not allowed, but bundles can be
> mixed with instructions that are not bundled.
>
> -Krzysztof
>
> --
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted
> by The Linux Foundation
> _______________________________________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
>
2016 Jan 21
2
a bundle with one instruction
You can have
>
> BUNDLE // 2 instructions in a bundle
> instruction1 //
> instruction2 //
> instruction3 // single, non-bundled instruction
> BUNDLE // another bundle with 2 instructions
> instruction4 //
> instruction5 //
>
> instruction3 is not bundled with anything, and it's between two other
> bundles---that's what I meant by "mixing".
>
>...