Use sbb x, x to materialize carry bit in a GPR. The result is all one's or all zero's.
[oota-llvm.git] / test / LLVMC / C++ / hello.cpp
1 // Test that we can compile C++ code.
2 // RUN: llvmc %s -o %t
3 // RUN: %abs_tmp | grep hello
4 #include <iostream>
5
6 int main() {
7     std::cout << "hello" << '\n';
8 }