Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / CodeGen / CBackend / 2003-05-12-IntegerSizeWarning.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=c
2
3 ; Apparently this constant was unsigned in ISO C 90, but not in C 99.
4
5 int %foo() {
6         ret int -2147483648
7 }