summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/NewGVN/pr28562.ll
blob: e4a17df4b2788cd77bb7a99354479428ae8ead16 (plain)
1
2
3
4
5
6
7
8
9
; RUN: opt -S -newgvn < %s | FileCheck %s
define i32* @test1(i32* %a) {
  %x1 = getelementptr inbounds i32, i32* %a, i32 10
  %x2 = getelementptr i32, i32* %a, i32 10
  ret i32* %x2
; CHECK-LABEL: @test1(
; CHECK: %[[x:.*]] = getelementptr i32, i32* %a, i32 10
; CHECK: ret i32* %[[x]]
}
OpenPOWER on IntegriCloud