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

Unified Diff: src/IceDefs.h

Issue 1651163002: Subzero. Enables moar complex relocation offsets. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 4 years, 11 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
Index: src/IceDefs.h
diff --git a/src/IceDefs.h b/src/IceDefs.h
index e2799eb4a277a70db60a76ab39a636afdc5c39b3..55cb62369369cef6db47aab5afd75caaf8daa380 100644
--- a/src/IceDefs.h
+++ b/src/IceDefs.h
@@ -68,6 +68,7 @@ class InstTarget;
class LiveRange;
class Liveness;
class Operand;
+class RelocOffset;
class TargetDataLowering;
class TargetLowering;
class Variable;
@@ -309,6 +310,8 @@ enum RandomizationPassesEnum {
RPE_num
};
+using RelocOffsetArray = llvm::SmallVector<RelocOffset *, 4>;
Jim Stichnoth 2016/02/02 20:57:49 You could use "class RelocOffset" here and remove
John 2016/02/03 15:50:41 Done.
+
} // end of namespace Ice
#endif // SUBZERO_SRC_ICEDEFS_H

Powered by Google App Engine
This is Rietveld 408576698