Fix misspelled target triples in MC/ARM test commands.
[oota-llvm.git] / test / FrontendC / 2004-03-07-ExternalConstant.c
1 // RUN: %llvmgcc -xc %s -S -o - | grep constant
2
3 extern const int a[];   // 'a' should be marked constant even though it's external!
4 int foo () {
5   return a[0];
6 }
7