diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-08-24 06:41:40 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-08-24 06:41:40 +0000 |
commit | 2ff1e67346aa93fba6f4d09ac04d0e96243d4fd2 (patch) | |
tree | fa780100c755aee0ca6c536e9cc88d0877026158 | |
parent | f1b7eb145e5376ee46b95040d1ec09a4c98ed1bc (diff) | |
download | external_llvm-2ff1e67346aa93fba6f4d09ac04d0e96243d4fd2.tar.gz external_llvm-2ff1e67346aa93fba6f4d09ac04d0e96243d4fd2.tar.bz2 external_llvm-2ff1e67346aa93fba6f4d09ac04d0e96243d4fd2.zip |
This code is dodgy, but the guaranteed assertion failure doesn't help anything.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16014 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/SparcV9/SparcV9RegInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/SparcV9RegInfo.cpp b/lib/Target/SparcV9/SparcV9RegInfo.cpp index e5f4073603..948276b102 100644 --- a/lib/Target/SparcV9/SparcV9RegInfo.cpp +++ b/lib/Target/SparcV9/SparcV9RegInfo.cpp @@ -456,7 +456,7 @@ void SparcV9RegInfo::colorMethodArgs(const Function *Meth, // if( isArgInReg ) { if( regClassIDOfArgReg != RegClassID ) { - assert(0 && "This could should work but it is not tested yet"); + // NOTE: This code has not been well-tested. // It is a variable argument call: the float reg must go in a %o reg. // We have to move an int reg to a float reg via memory. |