diff options
Diffstat (limited to 'test/FrontendC++/2003-11-08-ArrayAddress.cpp')
-rw-r--r-- | test/FrontendC++/2003-11-08-ArrayAddress.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/FrontendC++/2003-11-08-ArrayAddress.cpp b/test/FrontendC++/2003-11-08-ArrayAddress.cpp deleted file mode 100644 index ad02b4a..0000000 --- a/test/FrontendC++/2003-11-08-ArrayAddress.cpp +++ /dev/null @@ -1,10 +0,0 @@ -// 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]; -} |