summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>2022-12-12 17:11:47 +0000
committerQt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>2022-12-12 17:12:18 +0000
commit6dfa43b717a37ff37dd24fd21c95b24b6e412f9b (patch)
tree76dab4b7aff2d0454e674b975c347c8f0d2d1fb4
parent6d252f8d8b84e8a6280fa47e3b91b4ff297406c7 (diff)
Update dependencies on '6.4.2' in qt/qtconnectivityv6.4.26.4.2
Change-Id: I940521fa10ca98906b3cdcbfea675caff91f3f3f Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
-rw-r--r--dependencies.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/dependencies.yaml b/dependencies.yaml
index 282a81d5..d2f29d7b 100644
--- a/dependencies.yaml
+++ b/dependencies.yaml
@@ -1,7 +1,7 @@
dependencies:
../qtbase:
- ref: 0d08801da2a76d2e8ce098cc2de435c78efff72f
+ ref: e3e40c44d3f998a433a6a1080297c5f28e9a768f
required: true
../qtdeclarative:
- ref: 4b38baed362bf34433514aa66f35e8a4cbdcd85b
+ ref: 1b58f30087eedf42f16572d8ae1d6a5b18f3d698
required: false
lue='upstream/users/MaskRay/spr/drivercrosswindows-remove-isystem-after'>upstream/users/MaskRay/spr/drivercrosswindows-remove-isystem-after Vendor branches of https://github.com/llvm/llvm-project.git
summaryrefslogtreecommitdiffstats
path: root/llvm/test/Other/debugcounter-dce.ll
blob: 75302149e717aee2fa719c8589b34305f348860d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; REQUIRES: asserts
; RUN: opt -passes=dce -S -debug-counter=dce-transform-skip=1,dce-transform-count=2  < %s | FileCheck %s
;; Test that, with debug counters on, we will skip the first DCE opportunity, perform next 2,
;; and ignore all the others left.

; CHECK-LABEL: @test
; CHECK-NEXT: %add1 = add i32 1, 2
; CHECK-NEXT: %sub1 = sub i32 %add1, 1
; CHECK-NEXT: %add2 = add i32 1, 2
; CHECK-NEXT: %add3 = add i32 1, 2
; CHECK-NEXT: ret void
define void @test() {
  %add1 = add i32 1, 2
  %sub1 = sub i32 %add1, 1
  %add2 = add i32 1, 2
  %sub2 = sub i32 %add2, 1
  %add3 = add i32 1, 2
  %sub3 = sub i32 %add3, 1
  ret void
}