diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-09-20 07:32:00 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-09-20 07:32:00 +0000 |
| commit | 00b4508bb0e1fea69156c3a36ee55b816a04336e (patch) | |
| tree | da0c16923a6713c2c1dcf1c6fdb9542915d2ad46 /llvm/lib | |
| parent | 9b3ed87506da910e5126b0c7e915a15f1da65a44 (diff) | |
| download | bcm5719-llvm-00b4508bb0e1fea69156c3a36ee55b816a04336e.tar.gz bcm5719-llvm-00b4508bb0e1fea69156c3a36ee55b816a04336e.zip | |
remove the asmstring, it is now dead. Improve comment.
llvm-svn: 82390
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index 331875ec034..30b57d85d01 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/lib/Target/X86/X86InstrInfo.td @@ -546,11 +546,12 @@ let neverHasSideEffects = 1 in { def INT3 : I<0xcc, RawFrm, (outs), (ins), "int 3", []>; def INT : I<0xcd, RawFrm, (outs), (ins i8imm:$trap), "int\t$trap", []>; -// PIC base +// PIC base construction. This expands to code that looks like this: +// call $next_inst +// popl %destreg" let neverHasSideEffects = 1, isNotDuplicable = 1, Uses = [ESP] in def MOVPC32r : Ii32<0xE8, Pseudo, (outs GR32:$reg), (ins i32imm:$label), - "call\t$label\n\t" - "pop{l}\t$reg", []>; + "", []>; //===----------------------------------------------------------------------===// // Control Flow Instructions... |

