diff options
Diffstat (limited to 'runtime/GCCLibraries/crtend/C++-Exception.cpp')
-rw-r--r-- | runtime/GCCLibraries/crtend/C++-Exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/GCCLibraries/crtend/C++-Exception.cpp b/runtime/GCCLibraries/crtend/C++-Exception.cpp index b6ebb2292e..b521f1464c 100644 --- a/runtime/GCCLibraries/crtend/C++-Exception.cpp +++ b/runtime/GCCLibraries/crtend/C++-Exception.cpp @@ -36,7 +36,7 @@ void *__llvm_cxxeh_allocate_exception(unsigned NumBytes) throw() { // llvm_cxx_exception *E = (llvm_cxx_exception *)malloc(NumBytes+sizeof(llvm_cxx_exception)); - E->BaseException.ExceptionType = 0; // intialize to invalid + E->BaseException.ExceptionType = 0; // initialize to invalid return E+1; // return the pointer after the header } |