Update ASSERT on arm to support SmiOrTagged in ClampToUint8
R=jkummerow@chromium.org Review URL: https://chromiumcodereview.appspot.com/15832004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14881 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
665c644940
commit
2e21ff6768
@ -2035,7 +2035,7 @@ LInstruction* LChunkBuilder::DoClampToUint8(HClampToUint8* instr) {
|
||||
} else if (input_rep.IsInteger32()) {
|
||||
return DefineAsRegister(new(zone()) LClampIToUint8(reg));
|
||||
} else {
|
||||
ASSERT(input_rep.IsTagged());
|
||||
ASSERT(input_rep.IsSmiOrTagged());
|
||||
// Register allocator doesn't (yet) support allocation of double
|
||||
// temps. Reserve d1 explicitly.
|
||||
LClampTToUint8* result = new(zone()) LClampTToUint8(reg, FixedTemp(d11));
|
||||
|
Loading…
Reference in New Issue
Block a user