diff options
-rw-r--r-- | test/LLVMC/Init.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/LLVMC/Init.td b/test/LLVMC/Init.td index fbed6d4..d9a4fc1 100644 --- a/test/LLVMC/Init.td +++ b/test/LLVMC/Init.td @@ -1,7 +1,7 @@ // Check that (init true/false) and (init "str") work. // RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t -// RUN: grep cl::init("some-string") %t -// RUN: grep cl::init(true) %t +// RUN: grep cl::init(\\"some-string\\") %t | count 1 +// RUN: grep cl::init(true) %t | count 1 include "llvm/CompilerDriver/Common.td" |