Rename builder.rs to inst_builder.rs.

This reflects its purpose, to define the `InstBuilder` trait.
This commit is contained in:
Dan Gohman
2018-03-13 17:00:23 -07:00
parent 3afe85ff17
commit cc8d6400f4
2 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ pub trait InstBuilderBase<'f>: Sized {
//
// This file defines the `InstBuilder` trait as an extension of `InstBuilderBase` with methods per
// instruction format and per opcode.
include!(concat!(env!("OUT_DIR"), "/builder.rs"));
include!(concat!(env!("OUT_DIR"), "/inst_builder.rs"));
/// Any type implementing `InstBuilderBase` gets all the `InstBuilder` methods for free.
impl<'f, T: InstBuilderBase<'f>> InstBuilder<'f> for T {}