| 553 | } |
| 554 | |
| 555 | void CodegenAnyVal::SetTimeOfDay(llvm::Value* time_of_day) { |
| 556 | // Set the second i64 value to 'time_of_day'. |
| 557 | DCHECK_EQ(type_.type, TYPE_TIMESTAMP); |
| 558 | value_ = builder_->CreateInsertValue(value_, time_of_day, 1, name_); |
| 559 | } |
| 560 | |
| 561 | void CodegenAnyVal::SetDate(llvm::Value* date) { |
| 562 | // Set the high bytes of the first value to 'date'. |
no outgoing calls
no test coverage detected