From 785ae7e7b1d80de8b5077c93439a5fee52e2fb11 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Wed, 8 Feb 2023 15:03:12 +0000 Subject: [PATCH] Fix the incorrect include path of Triple.h --- iwyu_driver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iwyu_driver.cc b/iwyu_driver.cc index 13c2c94..031b292 100644 --- a/iwyu_driver.cc +++ b/iwyu_driver.cc @@ -21,7 +21,7 @@ #include "llvm/ADT/SmallString.h" #include "llvm/ADT/STLExtras.h" -#include "llvm/ADT/Triple.h" +#include "llvm/TargetParser/Triple.h" #include "llvm/Option/ArgList.h" #include "llvm/Support/ErrorOr.h" #include "llvm/Support/Host.h"