-//===------ NullResolver.h - Reject symbol lookup requests ------*- C++ -*-===//\r
-//\r
-// The LLVM Compiler Infrastructure\r
-//\r
-// This file is distributed under the University of Illinois Open Source\r
-// License. See LICENSE.TXT for details.\r
-//\r
-//===----------------------------------------------------------------------===//\r
-//\r
-// Defines a RuntimeDyld::SymbolResolver subclass that rejects all symbol\r
-// resolution requests, for clients that have no cross-object fixups.\r
-//\r
-//===----------------------------------------------------------------------===//\r
-\r
-#ifndef LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H\r
-#define LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H\r
-\r
-#include "llvm/ExecutionEngine/RuntimeDyld.h"\r
-\r
-namespace llvm {\r
-namespace orc {\r
-\r
-/// SymbolResolver impliementation that rejects all resolution requests.\r
-/// Useful for clients that have no cross-object fixups.\r
-class NullResolver : public RuntimeDyld::SymbolResolver {\r
-public:\r
- RuntimeDyld::SymbolInfo findSymbol(const std::string &Name) final;\r
-\r
- RuntimeDyld::SymbolInfo\r
- findSymbolInLogicalDylib(const std::string &Name) final;\r
-};\r
-\r
-} // End namespace orc.\r
-} // End namespace llvm.\r
-\r
-#endif // LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H\r
+//===------ NullResolver.h - Reject symbol lookup requests ------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// Defines a RuntimeDyld::SymbolResolver subclass that rejects all symbol
+// resolution requests, for clients that have no cross-object fixups.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H
+#define LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H
+
+#include "llvm/ExecutionEngine/RuntimeDyld.h"
+
+namespace llvm {
+namespace orc {
+
+/// SymbolResolver impliementation that rejects all resolution requests.
+/// Useful for clients that have no cross-object fixups.
+class NullResolver : public RuntimeDyld::SymbolResolver {
+public:
+ RuntimeDyld::SymbolInfo findSymbol(const std::string &Name) final;
+
+ RuntimeDyld::SymbolInfo
+ findSymbolInLogicalDylib(const std::string &Name) final;
+};
+
+} // End namespace orc.
+} // End namespace llvm.
+
+#endif // LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H
-//===---------- NullResolver.cpp - Reject symbol lookup requests ----------===//\r
-//\r
-// The LLVM Compiler Infrastructure\r
-//\r
-// This file is distributed under the University of Illinois Open Source\r
-// License. See LICENSE.TXT for details.\r
-//\r
-//===----------------------------------------------------------------------===//\r
-\r
-#include "llvm/ExecutionEngine/Orc/NullResolver.h"\r
-\r
-#include "llvm/Support/ErrorHandling.h"\r
-\r
-namespace llvm {\r
-namespace orc {\r
-\r
-RuntimeDyld::SymbolInfo NullResolver::findSymbol(const std::string &Name) {\r
- llvm_unreachable("Unexpected cross-object symbol reference");\r
-}\r
-\r
-RuntimeDyld::SymbolInfo\r
-NullResolver::findSymbolInLogicalDylib(const std::string &Name) {\r
- llvm_unreachable("Unexpected cross-object symbol reference");\r
-}\r
-\r
-} // End namespace orc.\r
-} // End namespace llvm.\r
+//===---------- NullResolver.cpp - Reject symbol lookup requests ----------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/ExecutionEngine/Orc/NullResolver.h"
+
+#include "llvm/Support/ErrorHandling.h"
+
+namespace llvm {
+namespace orc {
+
+RuntimeDyld::SymbolInfo NullResolver::findSymbol(const std::string &Name) {
+ llvm_unreachable("Unexpected cross-object symbol reference");
+}
+
+RuntimeDyld::SymbolInfo
+NullResolver::findSymbolInLogicalDylib(const std::string &Name) {
+ llvm_unreachable("Unexpected cross-object symbol reference");
+}
+
+} // End namespace orc.
+} // End namespace llvm.