~ubuntu-branches/ubuntu/quantal/llvm-3.1/quantal

« back to all changes in this revision

Viewing changes to include/llvm/MC/MCAsmInfo.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-04-10 23:38:33 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120410233833-5ibwguerdnr58six
Tags: 3.1~svn154439-1
* New snapshot release
* Change the soname to match what Debian is expecting
* Clean up the dh_shlibdeps call

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
    /// symbol names.  This defaults to true.
144
144
    bool AllowPeriodsInName;
145
145
 
 
146
    /// AllowUTF8 - This is true if the assembler accepts UTF-8 input.
 
147
    // FIXME: Make this a more general encoding setting?
 
148
    bool AllowUTF8;
 
149
 
146
150
    //===--- Data Emission Directives -------------------------------------===//
147
151
 
148
152
    /// ZeroDirective - this should be set to the directive used to get some
485
489
    bool doesAllowPeriodsInName() const {
486
490
      return AllowPeriodsInName;
487
491
    }
 
492
    bool doesAllowUTF8() const {
 
493
      return AllowUTF8;
 
494
    }
488
495
    const char *getZeroDirective() const {
489
496
      return ZeroDirective;
490
497
    }