diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-20 17:12:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-20 17:12:46 +0000 |
commit | 83757c7fb51bd60a8c264fba24a0b6f1b01efdd3 (patch) | |
tree | 2c984abe14acdf306942c1860840d4eaee5fe76c /include | |
parent | d3eb106dfacda206b8651d1c39f5a26fc7be09a8 (diff) | |
download | external_llvm-83757c7fb51bd60a8c264fba24a0b6f1b01efdd3.zip external_llvm-83757c7fb51bd60a8c264fba24a0b6f1b01efdd3.tar.gz external_llvm-83757c7fb51bd60a8c264fba24a0b6f1b01efdd3.tar.bz2 |
rename TargetAsmInfo::getASDirective -> getDataASDirective
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76431 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 50e08bd..0ba79a4 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -305,11 +305,10 @@ namespace llvm { const char *Data32bitsDirective; // Defaults to "\t.long\t" const char *Data64bitsDirective; // Defaults to "\t.quad\t" - /// getASDirective - Targets can override it to provide different data - /// directives for various sizes and non-default address spaces. - virtual const char *getASDirective(unsigned size, - unsigned AS) const { - assert(AS > 0 && "Dont know the directives for default addr space"); + /// getDataASDirective - Return the directive that should be used to emit + /// data of the specified size to the specified numeric address space. + virtual const char *getDataASDirective(unsigned Size, unsigned AS) const { + assert(AS != 0 && "Don't know the directives for default addr space"); return NULL; } @@ -631,16 +630,16 @@ namespace llvm { // Data directive accessors // const char *getData8bitsDirective(unsigned AS = 0) const { - return AS == 0 ? Data8bitsDirective : getASDirective(8, AS); + return AS == 0 ? Data8bitsDirective : getDataASDirective(8, AS); } const char *getData16bitsDirective(unsigned AS = 0) const { - return AS == 0 ? Data16bitsDirective : getASDirective(16, AS); + return AS == 0 ? Data16bitsDirective : getDataASDirective(16, AS); } const char *getData32bitsDirective(unsigned AS = 0) const { - return AS == 0 ? Data32bitsDirective : getASDirective(32, AS); + return AS == 0 ? Data32bitsDirective : getDataASDirective(32, AS); } const char *getData64bitsDirective(unsigned AS = 0) const { - return AS == 0 ? Data64bitsDirective : getASDirective(64, AS); + return AS == 0 ? Data64bitsDirective : getDataASDirective(64, AS); } |