| 12345678910111213141516171819202122232425262728 |
- // RUN: %fxc /T ps_5_0 %s /Fo %t.dxbc
- // RUN: %dxbc2dxil %t.dxbc /emit-llvm /o %t.ll.converted
- // RUN: fc %b.ref %t.ll.converted
- float main(float2 a : A, int3 b : B) : SV_Target
- {
- float s = 0;
- [loop]
- for(int i = 0; i < b.x; i++) {
- [branch]
- if (b.z == 9)
- break;
- for(int j = 0; j < b.y; j++)
- {
- [branch]
- if (b.z == 16)
- break;
- s += a.x;
- }
- }
- return s;
- }
|