diff options
author | Dan Gohman <gohman@apple.com> | 2009-04-13 21:06:25 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-04-13 21:06:25 +0000 |
commit | 6c1426308c29edd75b8b964b883b6f213da1b7c4 (patch) | |
tree | 5fce33a20690ef686fdbe718268ff4bc1f373f1b /llvm/utils/TableGen/CodeEmitterGen.cpp | |
parent | c3b1dd163b642efb8c46d52d585153cb3d7276d3 (diff) | |
download | bcm5719-llvm-6c1426308c29edd75b8b964b883b6f213da1b7c4.tar.gz bcm5719-llvm-6c1426308c29edd75b8b964b883b6f213da1b7c4.zip |
Rename COPY_TO_SUBCLASS to COPY_TO_REGCLASS, and generalize
it accordingly. Thanks to Jakob Stoklund Olesen for pointing
out how this might be useful.
llvm-svn: 68986
Diffstat (limited to 'llvm/utils/TableGen/CodeEmitterGen.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeEmitterGen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/TableGen/CodeEmitterGen.cpp b/llvm/utils/TableGen/CodeEmitterGen.cpp index 912617bc01d..7b0a335b26b 100644 --- a/llvm/utils/TableGen/CodeEmitterGen.cpp +++ b/llvm/utils/TableGen/CodeEmitterGen.cpp @@ -34,7 +34,7 @@ void CodeEmitterGen::reverseBits(std::vector<Record*> &Insts) { R->getName() == "INSERT_SUBREG" || R->getName() == "IMPLICIT_DEF" || R->getName() == "SUBREG_TO_REG" || - R->getName() == "COPY_TO_SUBCLASS") continue; + R->getName() == "COPY_TO_REGCLASS") continue; BitsInit *BI = R->getValueAsBitsInit("Inst"); @@ -111,7 +111,7 @@ void CodeEmitterGen::run(std::ostream &o) { R->getName() == "INSERT_SUBREG" || R->getName() == "IMPLICIT_DEF" || R->getName() == "SUBREG_TO_REG" || - R->getName() == "COPY_TO_SUBCLASS") { + R->getName() == "COPY_TO_REGCLASS") { o << " 0U,\n"; continue; } @@ -149,7 +149,7 @@ void CodeEmitterGen::run(std::ostream &o) { InstName == "INSERT_SUBREG" || InstName == "IMPLICIT_DEF" || InstName == "SUBREG_TO_REG" || - InstName == "COPY_TO_SUBCLASS") continue; + InstName == "COPY_TO_REGCLASS") continue; BitsInit *BI = R->getValueAsBitsInit("Inst"); const std::vector<RecordVal> &Vals = R->getValues(); |