gen/runtime: Use the correct header path for ModRef

In stable LLVM 16 this is now under `Support` and not `IR`

Signed-off-by: Ikey Doherty <ikey@serpentos.com>
This commit is contained in:
Ikey Doherty 2023-05-22 08:40:52 +01:00
parent 2d3bb571e5
commit f06d31de56
No known key found for this signature in database
GPG key ID: 34107B628913AEBA

View file

@ -33,7 +33,7 @@
#include "llvm/Bitcode/BitcodeWriter.h"
#include "llvm/IR/Attributes.h"
#if LDC_LLVM_VER >= 1600
#include "llvm/IR/ModRef.h"
#include "llvm/Support/ModRef.h"
#endif
#include "llvm/IR/Module.h"
#include "llvm/Support/CommandLine.h"