diff options
Diffstat (limited to 'test/CodeGen/X86/GC')
-rw-r--r-- | test/CodeGen/X86/GC/alloc_loop.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/GC/argpromotion.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/GC/badreadproto.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/GC/badwriteproto.ll | 6 | ||||
-rw-r--r-- | test/CodeGen/X86/GC/inline.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/GC/inline2.ll | 4 |
6 files changed, 11 insertions, 11 deletions
diff --git a/test/CodeGen/X86/GC/alloc_loop.ll b/test/CodeGen/X86/GC/alloc_loop.ll index fb78ba2..2a505e8 100644 --- a/test/CodeGen/X86/GC/alloc_loop.ll +++ b/test/CodeGen/X86/GC/alloc_loop.ll @@ -31,8 +31,8 @@ entry: store i8** %tmp.2, i8*** %B ;; *B = A; - %B.1 = load i8*** %B - %A.1 = load i8** %A + %B.1 = load i8**, i8*** %B + %A.1 = load i8*, i8** %A call void @llvm.gcwrite(i8* %A.1, i8* %B.upgrd.1, i8** %B.1) br label %AllocLoop diff --git a/test/CodeGen/X86/GC/argpromotion.ll b/test/CodeGen/X86/GC/argpromotion.ll index c63ce22..37baf32 100644 --- a/test/CodeGen/X86/GC/argpromotion.ll +++ b/test/CodeGen/X86/GC/argpromotion.ll @@ -14,6 +14,6 @@ define internal i32 @f(i32* %xp) gc "example" { entry: %var = alloca i8* call void @llvm.gcroot(i8** %var, i8* null) - %x = load i32* %xp + %x = load i32, i32* %xp ret i32 %x } diff --git a/test/CodeGen/X86/GC/badreadproto.ll b/test/CodeGen/X86/GC/badreadproto.ll index 4fe90b9..37672f8 100644 --- a/test/CodeGen/X86/GC/badreadproto.ll +++ b/test/CodeGen/X86/GC/badreadproto.ll @@ -7,7 +7,7 @@ declare %list* @llvm.gcread(%list*, %list**) define %list* @tl(%list* %l) gc "example" { - %hd.ptr = getelementptr %list* %l, i32 0, i32 0 + %hd.ptr = getelementptr %list, %list* %l, i32 0, i32 0 %hd = call %list* @llvm.gcread(%list* %l, %list** %hd.ptr) ret i32 %tmp } diff --git a/test/CodeGen/X86/GC/badwriteproto.ll b/test/CodeGen/X86/GC/badwriteproto.ll index be81f84..2544e40 100644 --- a/test/CodeGen/X86/GC/badwriteproto.ll +++ b/test/CodeGen/X86/GC/badwriteproto.ll @@ -7,13 +7,13 @@ declare void @llvm.gcwrite(%list*, %list*, %list**) define %list* @cons(i32 %hd, %list* %tl) gc "example" { - %tmp = call i8* @gcalloc(i32 bitcast(%list* getelementptr(%list* null, i32 1) to i32)) + %tmp = call i8* @gcalloc(i32 bitcast(%list* getelementptr(%list, %list* null, i32 1) to i32)) %cell = bitcast i8* %tmp to %list* - %hd.ptr = getelementptr %list* %cell, i32 0, i32 0 + %hd.ptr = getelementptr %list, %list* %cell, i32 0, i32 0 store i32 %hd, i32* %hd.ptr - %tl.ptr = getelementptr %list* %cell, i32 0, i32 0 + %tl.ptr = getelementptr %list, %list* %cell, i32 0, i32 0 call void @llvm.gcwrite(%list* %tl, %list* %cell, %list** %tl.ptr) ret %cell.2 diff --git a/test/CodeGen/X86/GC/inline.ll b/test/CodeGen/X86/GC/inline.ll index 9da33ae..9d74c1f 100644 --- a/test/CodeGen/X86/GC/inline.ll +++ b/test/CodeGen/X86/GC/inline.ll @@ -15,8 +15,8 @@ define internal i32 @g() gc "example" { %obj = call %IntArray* @h( ) ; <%IntArray*> [#uses=2] %obj.2 = bitcast %IntArray* %obj to i8* ; <i8*> [#uses=1] store i8* %obj.2, i8** %root - %Length.ptr = getelementptr %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1] - %Length = load i32* %Length.ptr ; <i32> [#uses=1] + %Length.ptr = getelementptr %IntArray, %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1] + %Length = load i32, i32* %Length.ptr ; <i32> [#uses=1] ret i32 %Length } diff --git a/test/CodeGen/X86/GC/inline2.ll b/test/CodeGen/X86/GC/inline2.ll index 1594705..034c985 100644 --- a/test/CodeGen/X86/GC/inline2.ll +++ b/test/CodeGen/X86/GC/inline2.ll @@ -16,8 +16,8 @@ define internal i32 @g() gc "example" { %obj = call %IntArray* @h( ) ; <%IntArray*> [#uses=2] %obj.2 = bitcast %IntArray* %obj to i8* ; <i8*> [#uses=1] store i8* %obj.2, i8** %root - %Length.ptr = getelementptr %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1] - %Length = load i32* %Length.ptr ; <i32> [#uses=1] + %Length.ptr = getelementptr %IntArray, %IntArray* %obj, i32 0, i32 0 ; <i32*> [#uses=1] + %Length = load i32, i32* %Length.ptr ; <i32> [#uses=1] ret i32 %Length } |