mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
I wonder how this didn't cause any tests to fail...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10462 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4d7af65903
commit
721b4e5715
@ -166,8 +166,8 @@ private:
|
||||
bool isPCRelative = false)
|
||||
: value(V), opType(OpTy), regNum(-1) {
|
||||
switch (UseTy) {
|
||||
case MOTy::Use: flags = DEFFLAG; break;
|
||||
case MOTy::Def: flags = USEFLAG; break;
|
||||
case MOTy::Use: flags = USEFLAG; break;
|
||||
case MOTy::Def: flags = DEFFLAG; break;
|
||||
case MOTy::UseAndDef: flags = DEFFLAG | USEFLAG; break;
|
||||
default: assert(0 && "Invalid value for UseTy!");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user