Merging the linear scan register allocator in trunk. It currently passes most tests...
[oota-llvm.git] / test / Feature / constpointer.ll
1 ; This testcase is primarily used for testing that global values can be used as 
2 ; constant pointer initializers.  This is tricky because they can be forward
3 ; declared and involves an icky bytecode encoding.  There is no meaningful 
4 ; optimization that can be performed on this file, it is just here to test 
5 ; assembly and disassembly.
6 ;
7
8
9 %t3 = global int * %t1           ;; Forward reference
10 %t1 = global int 4
11 %t4 = global int ** %t3          ;; reference to reference
12
13 %t2 = global int * %t1
14
15 global float * %0                ;; Forward numeric reference
16 global float * %0                ;; Duplicate forward numeric reference
17 global float 0.0
18 global float * %0                ;; Numeric reference
19
20
21 %fptr = global void() * %f       ;; Forward ref method defn
22 declare void "f"()               ;; External method
23
24 %sptr1   = global [11x sbyte]* %somestr         ;; Forward ref to a constant
25 %somestr = constant [11x sbyte] c"hello world"
26 %sptr2   = global [11x sbyte]* %somestr
27
28 implementation
29