Skip to content

Commit

Permalink
Merge pull request arsenm#12 from TheErk/fix-spellingTypos
Browse files Browse the repository at this point in the history
Fix a couple of spelling typos
  • Loading branch information
arsenm authored Oct 13, 2017
2 parents f09151b + 3c2c439 commit c5055c4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmake/FindASan.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ function (add_sanitize_address TARGET)
return()
endif ()

saitizer_add_flags(${TARGET} "AddressSanitizer" "ASan")
sanitizer_add_flags(${TARGET} "AddressSanitizer" "ASan")
endfunction ()
2 changes: 1 addition & 1 deletion cmake/FindMSan.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ function (add_sanitize_memory TARGET)
return()
endif ()

saitizer_add_flags(${TARGET} "MemorySanitizer" "MSan")
sanitizer_add_flags(${TARGET} "MemorySanitizer" "MSan")
endfunction ()
4 changes: 2 additions & 2 deletions cmake/FindSanitizers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ function(add_sanitizers ...)
if (NUM_COMPILERS GREATER 1)
message(WARNING "Can't use any sanitizers for target ${TARGET}, "
"because it will be compiled by incompatible compilers. "
"Target will be compiled without sanitzers.")
"Target will be compiled without sanitizers.")
return()

# If the target is compiled by no known compiler, ignore it.
elseif (NUM_COMPILERS EQUAL 0)
message(WARNING "Can't use any sanitizers for target ${TARGET}, "
"because it uses an unknown compiler. Target will be "
"compiled without sanitzers.")
"compiled without sanitizers.")
return()
endif ()

Expand Down
2 changes: 1 addition & 1 deletion cmake/FindTSan.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ function (add_sanitize_thread TARGET)
return()
endif ()

saitizer_add_flags(${TARGET} "ThreadSanitizer" "TSan")
sanitizer_add_flags(${TARGET} "ThreadSanitizer" "TSan")
endfunction ()
2 changes: 1 addition & 1 deletion cmake/FindUBSan.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ function (add_sanitize_undefined TARGET)
return()
endif ()

saitizer_add_flags(${TARGET} "UndefinedBehaviorSanitizer" "UBSan")
sanitizer_add_flags(${TARGET} "UndefinedBehaviorSanitizer" "UBSan")
endfunction ()
2 changes: 1 addition & 1 deletion cmake/sanitize-helpers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ endfunction ()


# Helper to assign sanitizer flags for TARGET.
function (saitizer_add_flags TARGET NAME PREFIX)
function (sanitizer_add_flags TARGET NAME PREFIX)
# Get list of compilers used by target and check, if sanitizer is available
# for this target. Other compiler checks like check for conflicting
# compilers will be done in add_sanitizers function.
Expand Down

0 comments on commit c5055c4

Please sign in to comment.