commit | 3322624377188fdfc9a81b337617b3e4258ac2e1 | [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 | 5879edc3234c49a39bfea3ff02b471d3ce6a7bc3 [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;