blob: 05be6111644475098c027a887c63c64ecb8d2ac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
; This file is used by testlink1.ll, so it doesn't actually do anything itself
;
; RUN: echo
target endian = little
target pointersize = 32
%myint = type ushort
%struct2 = type { %struct1 }
%struct1 = type { int, void (%struct2*)*, %myint *, int (uint *)* }
implementation ; Functions:
internal void %f1 (%struct1* %tty) {
loopentry.preheader:
; <void (%struct2*, ubyte)**> [#uses=1]
; <void (%struct2*, ubyte)*> [#uses=0]
%tmp.2.i.i = getelementptr %struct1* %tty, uint 0, uint 1
%tmp.3.i.i = volatile load void (%struct2*)** %tmp.2.i.i
ret void
}
|