OSDN Git Service

The use of the construct:
authorCedric Venet <cedric.venet@laposte.net>
Fri, 5 Dec 2008 13:37:30 +0000 (13:37 +0000)
committerCedric Venet <cedric.venet@laposte.net>
Fri, 5 Dec 2008 13:37:30 +0000 (13:37 +0000)
commit8f241b0efb8b6449904cd985f4f7394398970363
tree8016042895425672e304bfd66ba28aec23aca72a
parent72bc70d499f64216defd971ef140cbaa2fad0fbd
The use of the construct:
  for(Type1 B = ...;;) { Type2 B ; ... }
is bad: code is hard to read and VS VS don't like it (it ignore the second declaration of B).
This patch fix the problem in tablegen. Please don't write code like this.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60590 91177308-0d34-0410-b5e6-96231b3b80d8
utils/TableGen/LLVMCConfigurationEmitter.cpp