summaryrefslogtreecommitdiff
path: root/llvm/lib/IR/GVMaterializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/IR/GVMaterializer.cpp')
-rw-r--r--llvm/lib/IR/GVMaterializer.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/lib/IR/GVMaterializer.cpp b/llvm/lib/IR/GVMaterializer.cpp
new file mode 100644
index 000000000000..35397309a103
--- /dev/null
+++ b/llvm/lib/IR/GVMaterializer.cpp
@@ -0,0 +1,17 @@
+//===-- GVMaterializer.cpp - Base implementation for GV materializers -----===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+// Minimal implementation of the abstract interface for materializing
+// GlobalValues.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/IR/GVMaterializer.h"
+using namespace llvm;
+
+GVMaterializer::~GVMaterializer() {}