1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/test/TableGen/DagIntSubst.ll
Reid Spencer 43899915e9 For PR1319:
Fix syntax of tests to ensure grep pattern is properly quoted.

llvm-svn: 36134
2007-04-16 15:31:49 +00:00

11 lines
106 B
LLVM

// RUN: tblgen %s | grep {dag d = (X 13)}
def X;
class C<int N> {
dag d = (X N);
}
def VAL : C<13>;