Put space after pointer type in test. NFC.

llvm-svn: 258615
This commit is contained in:
Manuel Jacob 2016-01-23 05:47:34 +00:00
parent 8aa5678125
commit 45cc9bb581
2 changed files with 3 additions and 3 deletions

View File

@ -128,7 +128,7 @@ INITIALIZE_PASS(NVPTXLowerKernelArgs, "nvptx-lower-kernel-args",
"Lower kernel arguments (NVPTX)", false, false)
// =============================================================================
// If the function had a byval struct ptr arg, say foo(%struct.x *byval %d),
// If the function had a byval struct ptr arg, say foo(%struct.x* byval %d),
// then add the following instructions to the first basic block:
//
// %temp = alloca %struct.x, align 8

View File

@ -37,8 +37,8 @@ entry:
store i64 %b, i64* %tmp2, align 16
%tmp4 = getelementptr %struct.s, %struct.s* %d, i32 0, i32 2
store i64 %c, i64* %tmp4, align 16
call void @f( %struct.s*byval %d )
call void @f( %struct.s*byval %d )
call void @f( %struct.s* byval %d )
call void @f( %struct.s* byval %d )
ret void
}