[llvm] d64ea0f - Remove superfluous whitespace around if(). NFC.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 25 07:38:46 PDT 2020
Author: Simon Pilgrim
Date: 2020-10-25T14:38:16Z
New Revision: d64ea0f18994e06c4428548c4093b3ce7a35cb98
URL: https://github.com/llvm/llvm-project/commit/d64ea0f18994e06c4428548c4093b3ce7a35cb98
DIFF: https://github.com/llvm/llvm-project/commit/d64ea0f18994e06c4428548c4093b3ce7a35cb98.diff
LOG: Remove superfluous whitespace around if(). NFC.
Added:
Modified:
llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
Removed:
################################################################################
diff --git a/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp b/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
index 373f67dabe70..1cfcf8ae943d 100644
--- a/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
@@ -148,7 +148,7 @@ createLocalCompileCallbackManager(const Triple &T, ExecutionSession &ES,
}
case Triple::x86_64: {
- if ( T.getOS() == Triple::OSType::Win32 ) {
+ if (T.getOS() == Triple::OSType::Win32) {
typedef orc::LocalJITCompileCallbackManager<orc::OrcX86_64_Win32> CCMgrT;
return CCMgrT::Create(ES, ErrorHandlerAddress);
} else {
More information about the llvm-commits
mailing list