Anders Carlsson | 858c64d | 2009-02-22 01:38:57 +0000 | [diff] [blame^] | 1 | // RUN: clang -triple=i686-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s && |
2 | // RUN: grep -e "\^i" %t | count 1 && | ||||
3 | // RUN: grep -e "\[0i\]" %t | count 1 | ||||
4 | |||||
5 | int main() | ||||
6 | { | ||||
7 | int n; | ||||
8 | |||||
9 | const char * inc = @encode(int[]); | ||||
10 | const char * vla = @encode(int[n]); | ||||
11 | } |