• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt -mtriple=arm64-darwin-unknown -S -consthoist < %s | FileCheck %s
2
3%T = type { i32, i32, i32, i32 }
4
5define i32 @test1() nounwind {
6; CHECK-LABEL: test1
7; CHECK: %const = bitcast i64 68141056 to i64
8; CHECK: %1 = inttoptr i64 %const to %T*
9; CHECK: %o1 = getelementptr %T, %T* %1, i32 0, i32 1
10; CHECK: %o2 = getelementptr %T, %T* %1, i32 0, i32 2
11; CHECK: %o3 = getelementptr %T, %T* %1, i32 0, i32 3
12  %at = inttoptr i64 68141056 to %T*
13  %o1 = getelementptr %T, %T* %at, i32 0, i32 1
14  %t1 = load i32, i32* %o1
15  %o2 = getelementptr %T, %T* %at, i32 0, i32 2
16  %t2 = load i32, i32* %o2
17  %a1 = add i32 %t1, %t2
18  %o3 = getelementptr %T, %T* %at, i32 0, i32 3
19  %t3 = load i32, i32* %o3
20  %a2 = add i32 %a1, %t3
21  ret i32 %a2
22}
23
24