From 20e037a8c506c9918ffe25e092a6a593187d93d5 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Tue, 4 Aug 2009 11:12:51 +0000 Subject: [PATCH] Fix a typo - this unbreaks llvm-gcc build on arm git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78059 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMTargetObjectFile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/ARM/ARMTargetObjectFile.h b/lib/Target/ARM/ARMTargetObjectFile.h index 604dd83bc84..b2e9ce51d13 100644 --- a/lib/Target/ARM/ARMTargetObjectFile.h +++ b/lib/Target/ARM/ARMTargetObjectFile.h @@ -25,10 +25,10 @@ namespace llvm { // That will allow not treating these as "directives". if (TM.getSubtarget().isAAPCS_ABI()) { StaticCtorSection = - getOrCreateSection("\t.section .init_array,\"aw\",%init_array", false, + getOrCreateSection(".init_array,\"aw\",%init_array", false, SectionKind::getDataRel()); StaticDtorSection = - getOrCreateSection("\t.section .fini_array,\"aw\",%fini_array", false, + getOrCreateSection(".fini_array,\"aw\",%fini_array", false, SectionKind::getDataRel()); } } -- 2.34.1