Skip to content

Commit

Permalink
Apply PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisameling committed Sep 19, 2022
1 parent a5f440e commit 0a77581
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/demangle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
#include <string>
#include <ctype.h>
#include <assert.h>
#include <stdexcept>

#include "symutil.h"

#ifdef _M_X64
extern "C" void cvt80to64(void * in, long double * out);
#elif _M_ARM64
void cvt80to64(void * in, long double * out) {
throw std::runtime_error("cvt80to64 is only supported on x64 processors.");
printf("cvt80to64 is only supported on x64 processors.");
exit(1);
}
#endif

Expand Down

0 comments on commit 0a77581

Please sign in to comment.