summaryrefslogtreecommitdiff
path: root/src/main/scala/Chisel/Core.scala
diff options
context:
space:
mode:
authorducky2015-10-26 11:54:22 -0700
committerPalmer Dabbelt2015-10-26 15:08:35 -0700
commit5a6bfa244806665aa072cb9baad1d12f6533255f (patch)
treeedeba246d6ba7bc49ff242630d90be2b46a335e2 /src/main/scala/Chisel/Core.scala
parent274ada88c78cf594880263efba194e79595ee2f3 (diff)
Add scalastyle ignore comments
Diffstat (limited to 'src/main/scala/Chisel/Core.scala')
-rw-r--r--src/main/scala/Chisel/Core.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/Chisel/Core.scala b/src/main/scala/Chisel/Core.scala
index 6fb0fb25..945475fb 100644
--- a/src/main/scala/Chisel/Core.scala
+++ b/src/main/scala/Chisel/Core.scala
@@ -18,7 +18,7 @@ object NO_DIR extends Direction("?") { override def flip: Direction = NO_DIR }
// REVIEW TODO: Should this actually be part of the RTL API? RTL should be
// considered untouchable from a debugging standpoint?
-object debug {
+object debug { // scalastyle:ignore object.name
// TODO:
def apply (arg: Data): Data = arg
}
@@ -1353,7 +1353,7 @@ abstract class BlackBox(_clock: Clock = null, _reset: Bool = null) extends Modul
def setVerilogParameters(s: String): Unit = {}
}
-object when {
+object when { // scalastyle:ignore object.name
/** Create a `when` condition block, where whether a block of logic is
* executed or not depends on the conditional.
*