diff options
author | Jorge Gorbe Moya <jgorbe@google.com> | 2024-10-29 09:56:15 -0700 |
---|---|---|
committer | Jorge Gorbe Moya <jgorbe@google.com> | 2024-10-29 09:59:03 -0700 |
commit | 12a8f504cfe25afab97e288a44e1d5b1925d24cf (patch) | |
tree | f13e62e9666d5fb91c4eec1ef28cb8909010d1c2 | |
parent | 39ad84e4d173b43dcd13209dc7c62de7a0476c80 (diff) | |
download | llvm-12a8f504cfe25afab97e288a44e1d5b1925d24cf.zip llvm-12a8f504cfe25afab97e288a44e1d5b1925d24cf.tar.gz llvm-12a8f504cfe25afab97e288a44e1d5b1925d24cf.tar.bz2 |
[SandboxIR] Use the proper gmock public header in unit tests.
This should fix the BuildKite bazel build.
-rw-r--r-- | llvm/unittests/SandboxIR/SandboxIRTest.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/unittests/SandboxIR/SandboxIRTest.cpp b/llvm/unittests/SandboxIR/SandboxIRTest.cpp index 99e1429..874c32c 100644 --- a/llvm/unittests/SandboxIR/SandboxIRTest.cpp +++ b/llvm/unittests/SandboxIR/SandboxIRTest.cpp @@ -21,8 +21,7 @@ #include "llvm/SandboxIR/Utils.h" #include "llvm/SandboxIR/Value.h" #include "llvm/Support/SourceMgr.h" -#include "gmock/gmock-matchers.h" -#include "gmock/gmock-more-matchers.h" +#include "gmock/gmock.h" #include "gtest/gtest.h" using namespace llvm; |