summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-01-30 22:55:20 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-01-30 22:55:20 +0000
commit3bbf29b84f3e8aea0b3a5d879093b49be13e8af1 (patch)
tree586c16ad5ad1eed25452569de986f23c2e91a07a /cmake
parent93f81d9b33bf5f01c113b1558962a5112b987092 (diff)
downloadllvm-3bbf29b84f3e8aea0b3a5d879093b49be13e8af1.tar.gz
llvm-3bbf29b84f3e8aea0b3a5d879093b49be13e8af1.tar.bz2
llvm-3bbf29b84f3e8aea0b3a5d879093b49be13e8af1.tar.xz
HandleLLVMOptions.cmake: Typo in comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/HandleLLVMOptions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake
index 487b2e4580..e3c99254ac 100644
--- a/cmake/modules/HandleLLVMOptions.cmake
+++ b/cmake/modules/HandleLLVMOptions.cmake
@@ -362,7 +362,7 @@ endif()
if(MSVC)
# Remove flags here, for exceptions and RTTI.
- # Each target property of source proerty should be responsible to control them.
+ # Each target property or source proerty should be responsible to control them.
# CL.EXE complains to override flags like "/GR /GR-".
string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")