mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
2079f988a9
Change-Id: I8e2ece677268972d578a787467f7ef52a1f33a71 Differential revision: https://reviews.llvm.org/D44114 llvm-svn: 327496
31 lines
563 B
TableGen
31 lines
563 B
TableGen
// RUN: llvm-tblgen %s | FileCheck %s
|
|
// XFAIL: vg_leak
|
|
|
|
// CHECK-LABEL: def FALSE {
|
|
// CHECK: int Value = 0;
|
|
// CHECK: }
|
|
|
|
// CHECK-LABEL: def TRUE {
|
|
// CHECK: int Value = 1;
|
|
// CHECK: }
|
|
|
|
// CHECK-LABEL: def X_NE {
|
|
// CHECK: bit a = 1;
|
|
// CHECK: bit b = 0;
|
|
// CHECK: }
|
|
|
|
class Base<int V> {
|
|
int Value = V;
|
|
}
|
|
|
|
class Derived<string Truth> :
|
|
Base<!if(!eq(Truth, "true"), 1, 0)>;
|
|
|
|
def TRUE : Derived<"true">;
|
|
def FALSE : Derived<"false">;
|
|
|
|
def X_NE {
|
|
bit a = !ne("true", "false");
|
|
bit b = !ne("foo", "foo");
|
|
}
|