diff options
Diffstat (limited to 'src/tools/wasm-split/wasm-split.cpp')
-rw-r--r-- | src/tools/wasm-split/wasm-split.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/wasm-split/wasm-split.cpp b/src/tools/wasm-split/wasm-split.cpp index aa21ec2cb..6a042679f 100644 --- a/src/tools/wasm-split/wasm-split.cpp +++ b/src/tools/wasm-split/wasm-split.cpp @@ -170,8 +170,8 @@ void getFunctionsToKeepAndSplit(Module& wasm, ProfileData profile = readProfile(profileFile); if (profile.hash != wasmHash) { Fatal() << "error: checksum in profile does not match module checksum. " - << "The split module must be the original module that was " - << "instrumented to generate the profile."; + << "The module to split must be the original, uninstrumented " + "module, not the module used to generate the profile."; } size_t i = 0; |