search for: cmatch

Displaying 1 result from an estimated 1 matches for "cmatch".

Did you mean: match
2015 Sep 16
2
LLVM linking problem
...of going via intermediate code. The use of the exact llvm-link binary, however, is not a necessary ingredient; I get the same result with a linking program of my own that uses the same libraries as llvm-link. Minimal test case: C:\test>type test.cpp #include <regex> int main() { std::cmatch m; regex_match("a", m, std::regex("a")); return 0; } C:\test>clang-cl -Xclang -emit-llvm -c -fms-compatibility-version=19 test.cpp C:\test>move test.obj test.ll Overwrite C:\test\test.ll? (Yes/No/All): y 1 file(s) moved. C:\test>llvm-link test.ll -o=a.ll...