~ubuntu-branches/ubuntu/jaunty/clamav/jaunty-backports

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/lib/Target/PowerPC/PPCSubtarget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-10-02 15:36:00 UTC
  • mfrom: (10.1.6 sid)
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: james.westby@ubuntu.com-20101002153600-2tx3vki1u55cdrjy
Tags: 0.96.3+dfsg-2ubuntu0.10.04.1
Microversion update to 0.96.3 for Lucid (LP: #653738)

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
  , HasFSQRT(false)
70
70
  , HasSTFIWX(false)
71
71
  , HasLazyResolverStubs(false)
 
72
  , IsJITCodeModel(false)
72
73
  , DarwinVers(0) {
73
74
 
74
75
  // Determine default and user specified characteristics
117
118
  // everything is.  This matters for PPC64, which codegens in PIC mode without
118
119
  // stubs.
119
120
  HasLazyResolverStubs = false;
 
121
 
 
122
  // Calls to external functions need to use indirect calls
 
123
  IsJITCodeModel = true;
120
124
}
121
125
 
122
126