Remove explicit uses of -emit-llvm, the test infrastructure adds it
[oota-llvm.git] / test / FrontendC / ptr-rotate.c
1 // RUN: %llvmgcc %s -S -m32 -o /dev/null
2 // RUN: %llvmgcc %s -S -O1 -m32 -o - | llc -march=x86 -mtriple=i386-apple-darwin9.7 | FileCheck %s -check-prefix=DARWIN
3
4 unsigned int func(void *A) {
5   // DARWIN: roll $27
6   return ((((unsigned long long) A) >> 5) | (((unsigned long long) A) << 27));
7 }