Test case for emitting va_arg as l-value; apparently I only *thought* I had committed this.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64368 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/struct.c b/test/CodeGen/struct.c
index 208cbd5..4b0cc3e 100644
--- a/test/CodeGen/struct.c
+++ b/test/CodeGen/struct.c
@@ -157,6 +157,7 @@
   __builtin_va_list l;
   __builtin_va_start(l,i);
   a13 b = __builtin_va_arg(l, a13);
+  int c = __builtin_va_arg(l, a13).c;
   return b.b;
 }