Put space after pointer type in test. NFC.
authorManuel Jacob <me@manueljacob.de>
Sat, 23 Jan 2016 05:47:34 +0000 (05:47 +0000)
committerManuel Jacob <me@manueljacob.de>
Sat, 23 Jan 2016 05:47:34 +0000 (05:47 +0000)
llvm-svn: 258615

llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp
llvm/test/CodeGen/X86/byval2.ll

index 6656077..d162a28 100644 (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.xbyval %d),
 // then add the following instructions to the first basic block:
 //
 // %temp = alloca %struct.x, align 8
index cc72a86..5eb8b59 100644 (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
 }