Print empty structs as {} rather than { }.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100787 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2010-04-08 18:03:05 +00:00
parent 88ccf742a3
commit 29e13e0c18
4 changed files with 17 additions and 13 deletions

View File

@@ -188,7 +188,7 @@ define void @test8b(i32* %P) {
%X = call {} @test8a(i32 5, i32* %P)
ret void
; CHECK: define void @test8b
; CHECK-NEXT: call { } @test8a
; CHECK-NEXT: call {} @test8a
; CHECK-NEXT: ret void
}