summaryrefslogtreecommitdiff
path: root/test/CFrontend/2002-02-13-TypeVarNameCollision.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CFrontend/2002-02-13-TypeVarNameCollision.c')
-rw-r--r--test/CFrontend/2002-02-13-TypeVarNameCollision.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CFrontend/2002-02-13-TypeVarNameCollision.c b/test/CFrontend/2002-02-13-TypeVarNameCollision.c
index f4daa2186b..ec334013ae 100644
--- a/test/CFrontend/2002-02-13-TypeVarNameCollision.c
+++ b/test/CFrontend/2002-02-13-TypeVarNameCollision.c
@@ -1,16 +1,16 @@
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
-/* This testcase causes a symbol table collision. Type names and variable
+/* This testcase causes a symbol table collision. Type names and variable
* names should be in distinct namespaces
*/
typedef struct foo {
- int X, Y;
+ int X, Y;
} FOO;
static FOO foo[100];
int test() {
- return foo[4].Y;
+ return foo[4].Y;
}