Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Unified Diff: src/IceFixups.h

Issue 1417173003: Fix ARM integrated assembler to be able to compile spec2k examples. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceAssembler.cpp ('k') | src/IceFixups.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceFixups.h
diff --git a/src/IceFixups.h b/src/IceFixups.h
index 303e592bb3d35e582eadb5141139f481e10f8a8d..d49e4d14ebb0dfae5e67ea796a819613b98b3d2d 100644
--- a/src/IceFixups.h
+++ b/src/IceFixups.h
@@ -46,8 +46,7 @@ public:
void set_value(const Constant *Value) { value_ = Value; }
/// Emits fixup, then returns the number of bytes to skip.
- virtual size_t emit(GlobalContext *Ctx, RelocOffsetT OverrideOffset,
- bool IsPCRel) const;
+ virtual size_t emit(GlobalContext *Ctx, const Assembler &Asm) const;
private:
intptr_t position_ = 0;
@@ -67,8 +66,7 @@ public:
AssemblerTextFixup(const std::string &Message, size_t NumBytes)
: AssemblerFixup(), Message(Message), NumBytes(NumBytes) {}
~AssemblerTextFixup() = default;
- virtual size_t emit(GlobalContext *Ctx, RelocOffsetT OverrideOffset,
- bool isPcRel) const;
+ size_t emit(GlobalContext *Ctx, const Assembler &Asm) const override;
private:
const std::string Message;
« no previous file with comments | « src/IceAssembler.cpp ('k') | src/IceFixups.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698