Teach getZeroExtendExpr and getSignExtendExpr to use trip-count
[llvm/msp430.git] / test / LLVMC / opt-test.c
blobed2df52fed7c53b0ab815794634b0931fbd044f6
1 /*
2 * Check that the -opt switch works.
3 * RUN: llvmc %s -opt -o %t
4 * RUN: ./%t | grep hello
5 */
7 #include <stdio.h>
9 int main() {
10 printf("hello\n");
11 return 0;