| ; REQUIRES: amdgpu-registered-target && x86-registered-target |
| ; RUN: opt < %s -mtriple=amdgcn -jump-threading -S | FileCheck %s -check-prefixes=CHECK,DIVERGENT |
| ; RUN: opt < %s -mtriple=amdgcn -passes=jump-threading -S | FileCheck %s -check-prefixes=CHECK,DIVERGENT |
| ; RUN: opt < %s -mtriple=x86_64 -jump-threading -S | FileCheck %s -check-prefixes=CHECK,UNIFORM |
| ; RUN: opt < %s -mtriple=x86_64 -passes=jump-threading -S | FileCheck %s -check-prefixes=CHECK,UNIFORM |
| ; Here we assure that for the target with no branch divergence usual Jump Threading optimization performed |
| ; For target with branch divergence - no optimization, so the IR is unchanged. |
| define i32 @test(i1 %cond) { |
| br i1 %cond, label %T1, label %F1 |
| %A = phi i1 [true, %T1], [false, %F1] |
| %B = phi i32 [%v1, %T1], [%v2, %F1] |
| br i1 %A, label %T2, label %F2 |
| ; UNIFORM: %v1 = call i32 @f1() |
| ; UNIFORM: call void @f3() |
| ; UNIFORM: %v2 = call i32 @f2() |