aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetAsmInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-06-19 00:08:39 +0000
committerChris Lattner <sabre@nondot.org>2009-06-19 00:08:39 +0000
commit4e0f25b603c96ce43474441e99252c5cd88c2e2e (patch)
tree04410a943b48aa29f7cce27132ef78884f541ae8 /include/llvm/Target/TargetAsmInfo.h
parentf4a481505eadaf661623ff801af9f4f458bcf9b0 (diff)
downloadexternal_llvm-4e0f25b603c96ce43474441e99252c5cd88c2e2e.zip
external_llvm-4e0f25b603c96ce43474441e99252c5cd88c2e2e.tar.gz
external_llvm-4e0f25b603c96ce43474441e99252c5cd88c2e2e.tar.bz2
merge the common darwin settings from the X86/PPC/ARM targets
into DarwinTargetAsmInfo.cpp. The remaining differences should be evaluated. It seems strange that x86/arm has .zerofill but ppc doesn't, etc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73742 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetAsmInfo.h')
-rw-r--r--include/llvm/Target/TargetAsmInfo.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h
index 1909826..670b099 100644
--- a/include/llvm/Target/TargetAsmInfo.h
+++ b/include/llvm/Target/TargetAsmInfo.h
@@ -130,7 +130,6 @@ namespace llvm {
private:
mutable StringMap<Section> Sections;
mutable SectionFlags::FlagsStringsMapType FlagsStrings;
- void fillDefaultValues();
protected:
/// TM - The current TargetMachine.
const TargetMachine &TM;
@@ -312,8 +311,7 @@ namespace llvm {
/// 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");
+ assert(AS > 0 && "Dont know the directives for default addr space");
return NULL;
}