diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-12-30 20:50:28 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-12-30 20:50:28 +0000 |
| commit | 81798417dce42907b668d15356eeb8b791d1a6b5 (patch) | |
| tree | 0f534177797bc69b0d0fe8c12ca70405e674d2b0 /llvm/lib/CodeGen/DwarfWriter.cpp | |
| parent | 5c4637816e6ff95cd489cb7b6edfcbd70990a772 (diff) | |
| download | bcm5719-llvm-81798417dce42907b668d15356eeb8b791d1a6b5.tar.gz bcm5719-llvm-81798417dce42907b668d15356eeb8b791d1a6b5.zip | |
MachineOperand::getImmedValue -> MachineOperand::getImm
llvm-svn: 45454
Diffstat (limited to 'llvm/lib/CodeGen/DwarfWriter.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/DwarfWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/DwarfWriter.cpp b/llvm/lib/CodeGen/DwarfWriter.cpp index 5ef48cc3401..17373fe2e6f 100644 --- a/llvm/lib/CodeGen/DwarfWriter.cpp +++ b/llvm/lib/CodeGen/DwarfWriter.cpp @@ -3159,7 +3159,7 @@ private: continue; } - unsigned BeginLabel = MI->getOperand(0).getImmedValue(); + unsigned BeginLabel = MI->getOperand(0).getImm(); assert(BeginLabel && "Invalid label!"); // End of the previous try-range? |

