commit | 29e13e0c18de57209170d5cd2c3dd1311f5e2a40 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Thu Apr 08 18:03:05 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Thu Apr 08 18:03:05 2010 +0000 |
tree | 03ff417a2ed8bb22f15138139231ecee88ac9158 | |
parent | 88ccf742a3a0d9ee7b68c767ea35292e1605f0bc [diff] [blame] |
Print empty structs as {} rather than { }. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100787 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/FrontendC/2007-05-16-EmptyStruct.c b/test/FrontendC/2007-05-16-EmptyStruct.c index 748aa98..23c0b1d 100644 --- a/test/FrontendC/2007-05-16-EmptyStruct.c +++ b/test/FrontendC/2007-05-16-EmptyStruct.c
@@ -1,5 +1,5 @@ // PR 1417 -// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep "struct.anon = type \{ \}" +// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep "struct.anon = type \{\}" struct { } *X;