New testcase
authorChris Lattner <sabre@nondot.org>
Fri, 30 May 2003 21:03:00 +0000 (21:03 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 30 May 2003 21:03:00 +0000 (21:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6454 91177308-0d34-0410-b5e6-96231b3b80d8

test/C++Frontend/pointer_arithmetic.c [new file with mode: 0644]

diff --git a/test/C++Frontend/pointer_arithmetic.c b/test/C++Frontend/pointer_arithmetic.c
new file mode 100644 (file)
index 0000000..5fedd85
--- /dev/null
@@ -0,0 +1,21 @@
+typedef struct {
+  int w;
+//  float x;
+//  double y;
+//  long long z;
+} S1Ty;
+
+typedef struct {
+  S1Ty A, B;
+} S2Ty;
+
+void takeS1(S1Ty *V) {}
+void takeVoid(void *P) {}
+
+int main() {
+  S2Ty E;
+  takeS1(&E.B);
+  takeVoid(&E);
+  return 0;
+}
+