| 540 | } |
| 541 | |
| 542 | llvm::Value* CodegenAnyVal::GetTimeOfDay() { |
| 543 | // Get the second i64 value. |
| 544 | DCHECK_EQ(type_.type, TYPE_TIMESTAMP); |
| 545 | return builder_->CreateExtractValue(value_, 1); |
| 546 | } |
| 547 | |
| 548 | llvm::Value* CodegenAnyVal::GetDate() { |
| 549 | // Get the high bytes of the first value. |
no outgoing calls
no test coverage detected