You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.234
Former-commit-id: 8071ec1a8c5eaa9be24b41745add19297608001f
This commit is contained in:
parent
f32dbaf0b2
commit
212f6bafcb
@ -1,24 +0,0 @@
|
||||
; Checks that speculative-execution only runs on divergent targets, if you pass
|
||||
; -spec-exec-only-if-divergent-target.
|
||||
|
||||
; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda -speculative-execution | \
|
||||
; RUN: FileCheck --check-prefix=ON %s
|
||||
; RUN: opt < %s -S -mtriple=nvptx-nvidia-cuda -speculative-execution \
|
||||
; RUN: -spec-exec-only-if-divergent-target | \
|
||||
; RUN: FileCheck --check-prefix=ON %s
|
||||
; RUN: opt < %s -S -speculative-execution -spec-exec-only-if-divergent-target | \
|
||||
; RUN: FileCheck --check-prefix=OFF %s
|
||||
|
||||
; Hoist in if-then pattern.
|
||||
define void @f() {
|
||||
; ON: %x = add i32 2, 3
|
||||
; ON: br i1 true
|
||||
; OFF: br i1 true
|
||||
; OFF: %x = add i32 2, 3
|
||||
br i1 true, label %a, label %b
|
||||
a:
|
||||
%x = add i32 2, 3
|
||||
br label %b
|
||||
b:
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user