Fix line endings (NFC)
authorJoseph Tremoulet <jotrem@microsoft.com>
Mon, 22 Jun 2015 21:37:34 +0000 (21:37 +0000)
committerJoseph Tremoulet <jotrem@microsoft.com>
Mon, 22 Jun 2015 21:37:34 +0000 (21:37 +0000)
I inadvertently checked these in with Windows-style line
endings in r240288.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240340 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/Orc/NullResolver.h
lib/ExecutionEngine/Orc/CMakeLists.txt
lib/ExecutionEngine/Orc/NullResolver.cpp

index df1d9e8518d5115d5605fa97a3b8ced936d046b0..1560c6d86e0f4758b7cdcd0f437da579b7a10d73 100644 (file)
@@ -1,36 +1,36 @@
-//===------ 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
index 05fb5a30bcdb1e43a8ec4888988d6949e9560386..99fe22c001da0e7cd03fc380a20aff0b08442831 100644 (file)
@@ -1,13 +1,13 @@
-add_llvm_library(LLVMOrcJIT\r
-  ExecutionUtils.cpp\r
-  IndirectionUtils.cpp\r
-  NullResolver.cpp\r
-  OrcMCJITReplacement.cpp\r
-  OrcTargetSupport.cpp\r
-\r
-  ADDITIONAL_HEADER_DIRS\r
-  ${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine/Orc\r
-\r
-  DEPENDS\r
-  intrinsics_gen\r
-  )\r
+add_llvm_library(LLVMOrcJIT
+  ExecutionUtils.cpp
+  IndirectionUtils.cpp
+  NullResolver.cpp
+  OrcMCJITReplacement.cpp
+  OrcTargetSupport.cpp
+
+  ADDITIONAL_HEADER_DIRS
+  ${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine/Orc
+
+  DEPENDS
+  intrinsics_gen
+  )
index 5b91b0acbaadda71e5670194e71e93c3deba0208..57666a9dada05b92858aa9d67287977bd6037395 100644 (file)
@@ -1,27 +1,27 @@
-//===---------- 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.