commit | 528700863adefca8de461ce28a7d903729fb96b4 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Thu Sep 24 21:47:32 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Thu Sep 24 21:47:32 2009 +0000 |
tree | 904a28d55c7039cefe27a789ca9d4c6465dd6e7e | |
parent | fe03dbeaa30187a75548d891cbe3f5cc97e73713 [diff] [blame] |
add and document regex support for FileCheck. You can now do stuff like: ; CHECK: movl {{%e[a-z][xi]}}, %eax or whatever. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82717 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/unittests/Support/RegexTest.cpp b/unittests/Support/RegexTest.cpp index b323e28..28a85a1 100644 --- a/unittests/Support/RegexTest.cpp +++ b/unittests/Support/RegexTest.cpp
@@ -9,6 +9,7 @@ #include "gtest/gtest.h" #include "llvm/Support/Regex.h" +#include "llvm/ADT/SmallVector.h" #include <cstring> using namespace llvm;