YouCompleteMe/cpp/llvm/tools/clang/test/CodeGen/pr12251.c
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

12 lines
230 B
C

// RUN: %clang_cc1 %s -emit-llvm -O1 -relaxed-aliasing -o - | FileCheck %s
enum e1 {e1_a = -1 };
enum e1 g1(enum e1 *x) {
return *x;
}
// CHECK: define i32 @g1
// CHECK: load i32* %x, align 4
// CHECK-NOT: range
// CHECK: ret