diff options
Diffstat (limited to 'clang/test/CodeGen/blocks-seq.c')
-rw-r--r-- | clang/test/CodeGen/blocks-seq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/blocks-seq.c b/clang/test/CodeGen/blocks-seq.c index 7ee8860a86c..a7851d66d5f 100644 --- a/clang/test/CodeGen/blocks-seq.c +++ b/clang/test/CodeGen/blocks-seq.c @@ -2,10 +2,10 @@ // CHECK: [[Vi:%.+]] = alloca %struct.__block_byref_i, align 8 // CHECK: call i32 (...)* @rhs() // CHECK: [[V7:%.+]] = getelementptr inbounds %struct.__block_byref_i, %struct.__block_byref_i* [[Vi]], i32 0, i32 1 -// CHECK: load %struct.__block_byref_i** [[V7]] +// CHECK: load %struct.__block_byref_i*, %struct.__block_byref_i** [[V7]] // CHECK: call i32 (...)* @rhs() // CHECK: [[V11:%.+]] = getelementptr inbounds %struct.__block_byref_i, %struct.__block_byref_i* [[Vi]], i32 0, i32 1 -// CHECK: load %struct.__block_byref_i** [[V11]] +// CHECK: load %struct.__block_byref_i*, %struct.__block_byref_i** [[V11]] int rhs(); |