Teach getZeroExtendExpr and getSignExtendExpr to use trip-count
[llvm/msp430.git] / test / LLVMC / hello.mm
blobff82e4af518d9ecd56c31d1b8494eea8220c014d
1 // Test that we can compile Objective-C++ code.
2 // RUN: llvmc %s -o %t
3 // RUN: ./%t | grep hello
4 #include <iostream>
6 int main() {
7     std::cout << "hello" << '\n';