blob: 86ff2f98afc4a2ca4eee51d597d0681af89a5796 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
Chris Lattner70019ab2002-09-20 14:37:46 +00003
4int foo(int *A, unsigned X) {
Jeff Cohenb02fbfc2005-04-23 21:26:11 +00005 return A[X];
Chris Lattner70019ab2002-09-20 14:37:46 +00006}