diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-04 19:36:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-04 19:36:09 +0000 |
commit | 6e994b74921d8519472a087246d7a56731e958d4 (patch) | |
tree | ce5f638f6cf7340ec2b50ade2005c47c3cc12f8d /include | |
parent | 14a6db8bd9c83f5fa1821c133f43ccaebdebef91 (diff) | |
download | external_llvm-6e994b74921d8519472a087246d7a56731e958d4.zip external_llvm-6e994b74921d8519472a087246d7a56731e958d4.tar.gz external_llvm-6e994b74921d8519472a087246d7a56731e958d4.tar.bz2 |
Final pass of minor cleanups for MachineInstr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28110 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 48db320..9cf2455 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -71,11 +71,11 @@ public: private: union { - GlobalValue *GV; // LLVM global for MO_GlobalAddress. - int64_t immedVal; // Constant value for an explicit constant - MachineBasicBlock *MBB; // For MO_MachineBasicBlock type - const char *SymbolName; // For MO_ExternalSymbol type - unsigned RegNo; // For MO_Register number for an explicit register + GlobalValue *GV; // For MO_GlobalAddress. + MachineBasicBlock *MBB; // For MO_MachineBasicBlock. + const char *SymbolName; // For MO_ExternalSymbol. + unsigned RegNo; // For MO_Register. + int64_t immedVal; // For MO_Immediate and MO_*Index. } contents; char flags; // see bit field definitions above |