summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-11-08-ArrayAddress.cpp
blob: ad02b4a187fb7e2d1e6f643e980eeedb76adec27 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %llvmgxx -xc++ %s -S -o - | grep getelementptr

struct foo {
  int array[100];
  void *getAddr(unsigned i);
};

void *foo::getAddr(unsigned i) {
  return &array[i];
}