summaryrefslogtreecommitdiffstats
path: root/courgette/patch_generator_x86_32.h
diff options
context:
space:
mode:
authorpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-23 21:56:39 +0000
committerpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-23 21:56:39 +0000
commit83c3cb14a4a8629df75b509e926e3c06438391d1 (patch)
tree8426eadd3e93a53532fb54ccfb33d42c840377c1 /courgette/patch_generator_x86_32.h
parent968f98483f3b025fd56b31f5942c91271b464e03 (diff)
downloadchromium_src-83c3cb14a4a8629df75b509e926e3c06438391d1.zip
chromium_src-83c3cb14a4a8629df75b509e926e3c06438391d1.tar.gz
chromium_src-83c3cb14a4a8629df75b509e926e3c06438391d1.tar.bz2
Revert 224789 "Add PE64 support to courgette"
Caused failures: http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%281%29/builds/23037/steps/courgette_unittests/logs/stdio > Add PE64 support to courgette > > Add tests for PE64 > > BUG=38784 > > Review URL: https://chromiumcodereview.appspot.com/23600063 TBR=wfh@chromium.org Review URL: https://codereview.chromium.org/23591065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224806 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'courgette/patch_generator_x86_32.h')
-rw-r--r--courgette/patch_generator_x86_32.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/courgette/patch_generator_x86_32.h b/courgette/patch_generator_x86_32.h
index 4a29a75..084bdc3 100644
--- a/courgette/patch_generator_x86_32.h
+++ b/courgette/patch_generator_x86_32.h
@@ -3,7 +3,6 @@
// found in the LICENSE file.
// This is the transformation and adjustment for Windows X86 executables.
-// The same code can be used for Windows X64 executables.
#ifndef COURGETTE_WIN32_X86_GENERATOR_H_
#define COURGETTE_WIN32_X86_GENERATOR_H_
@@ -67,7 +66,7 @@ class PatchGeneratorX86_32 : public TransformationPatchGenerator {
old_element_->region().length(),
&old_program);
if (old_parse_status != C_OK) {
- LOG(ERROR) << "Cannot parse as WinPE " << old_element_->Name();
+ LOG(ERROR) << "Cannot parse as Win32X86PE " << old_element_->Name();
return old_parse_status;
}
@@ -78,7 +77,7 @@ class PatchGeneratorX86_32 : public TransformationPatchGenerator {
&new_program);
if (new_parse_status != C_OK) {
DeleteAssemblyProgram(old_program);
- LOG(ERROR) << "Cannot parse as WinPE " << new_element_->Name();
+ LOG(ERROR) << "Cannot parse as Win32X86PE " << new_element_->Name();
return new_parse_status;
}