diff options
author | Devang Patel <dpatel@apple.com> | 2007-10-23 23:29:51 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-10-23 23:29:51 +0000 |
commit | dbb46b1985dfd2c7477446f11f8cf6e79cbe5b57 (patch) | |
tree | dfdd9511c0a26477d816ab8e1e97f79971adb1f8 /test/CodeGen/struct.c | |
parent | b1e3989731b69e692f9fa2ad080406850c772b40 (diff) |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43269 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/struct.c')
-rw-r--r-- | test/CodeGen/struct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/struct.c b/test/CodeGen/struct.c index cc6f0aaeeb..0091799462 100644 --- a/test/CodeGen/struct.c +++ b/test/CodeGen/struct.c @@ -43,7 +43,7 @@ typedef struct NA { int data; struct NA *next; } NA; -void f1() { A a; } +void f1() { NA a; } typedef struct NB { int d1; |