As per https://bugs.llvm.org/show_bug.cgi?id=44127, the CMakeLists.txt for LLVM-C currently checks the wrong host-triple for Windows X86. This results in the official LLVM-C.dll binary being only 9kb in size and containing no exports.
This updates the check to use i686-pc-windows-msvc, which is the default triplet selected by CMake, so that the resulting binaries are as expected.