Skip to content

Commit

Permalink
Move gyb from tools/ to utils/
Browse files Browse the repository at this point in the history
For consistency with the vague idea that things that are only useful for
compiler developers should go in utils/, not tools/. Unless they need
build system support.

Swift SVN r9433
  • Loading branch information
jrose-apple committed Oct 17, 2013
1 parent b78fefd commit 9a4528c
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stdlib/axle/AxleBuiltins.gyb
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
@# Ignore the following admonition; it applies to the resulting .swift file only
//// Automatically Generated From AxleBuiltins.gyb. Do Not Edit Directly ////
//// To regenerate: ////
//// ../../tools/gyb AxleBuiltins.gyb -o AxleBuiltins.swift ////
//// ../../utils/gyb AxleBuiltins.gyb -o AxleBuiltins.swift ////

// 2.2.1 Vertex Functions
@@asmname="llvm.air.get_vertex_id"
2 changes: 1 addition & 1 deletion stdlib/core/FixedPoint.gyb
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
@# Ignore the following admonition; it applies to the resulting .swift file only
//// Automatically Generated From FixedPoint.gyb. Do Not Edit Directly ////
//// To regenerate: ////
//// ../../tools/gyb FixedPoint.gyb -o FixedPoint.swift ////
//// ../../utils/gyb FixedPoint.gyb -o FixedPoint.swift ////
func overflowCheck<T: RandomAccessIndex>(arg: T, overflow: Bool) -> T {
alwaysTrap(overflow == false)
return arg
File renamed without changes.

0 comments on commit 9a4528c

Please sign in to comment.