aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-08 18:03:05 +0000
committerDan Gohman <gohman@apple.com>2010-04-08 18:03:05 +0000
commit29e13e0c18de57209170d5cd2c3dd1311f5e2a40 (patch)
tree03ff417a2ed8bb22f15138139231ecee88ac9158 /test/FrontendC
parent88ccf742a3a0d9ee7b68c767ea35292e1605f0bc (diff)
downloadexternal_llvm-29e13e0c18de57209170d5cd2c3dd1311f5e2a40.zip
external_llvm-29e13e0c18de57209170d5cd2c3dd1311f5e2a40.tar.gz
external_llvm-29e13e0c18de57209170d5cd2c3dd1311f5e2a40.tar.bz2
Print empty structs as {} rather than { }.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC')
-rw-r--r--test/FrontendC/2007-05-16-EmptyStruct.c2
1 files changed, 1 insertions, 1 deletions
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;