Index: lib/CodeGen/BackendUtil.cpp =================================================================== --- lib/CodeGen/BackendUtil.cpp +++ lib/CodeGen/BackendUtil.cpp @@ -283,7 +283,6 @@ PMBuilder.SLPVectorize = CodeGenOpts.VectorizeSLP; PMBuilder.LoopVectorize = CodeGenOpts.VectorizeLoop; - PMBuilder.DisableTailCalls = CodeGenOpts.DisableTailCalls; PMBuilder.DisableUnitAtATime = !CodeGenOpts.UnitAtATime; PMBuilder.DisableUnrollLoops = !CodeGenOpts.UnrollLoops; PMBuilder.MergeFunctions = CodeGenOpts.MergeFunctions; @@ -523,7 +522,6 @@ Options.NoZerosInBSS = CodeGenOpts.NoZeroInitializedInBSS; Options.UnsafeFPMath = CodeGenOpts.UnsafeFPMath; Options.StackAlignmentOverride = CodeGenOpts.StackAlignment; - Options.DisableTailCalls = CodeGenOpts.DisableTailCalls; Options.TrapFuncName = CodeGenOpts.TrapFuncName; Options.PositionIndependentExecutable = LangOpts.PIELevel != 0; Options.FunctionSections = CodeGenOpts.FunctionSections; Index: lib/CodeGen/CGCall.cpp =================================================================== --- lib/CodeGen/CGCall.cpp +++ lib/CodeGen/CGCall.cpp @@ -1465,6 +1465,8 @@ FuncAttrs.addAttribute("no-frame-pointer-elim-non-leaf"); } + FuncAttrs.addAttribute("disable-tail-calls", + llvm::toStringRef(CodeGenOpts.DisableTailCalls)); FuncAttrs.addAttribute("less-precise-fpmad", llvm::toStringRef(CodeGenOpts.LessPreciseFPMAD)); FuncAttrs.addAttribute("no-infs-fp-math", Index: test/CodeGen/2004-06-17-UnorderedCompares.c =================================================================== --- test/CodeGen/2004-06-17-UnorderedCompares.c +++ test/CodeGen/2004-06-17-UnorderedCompares.c @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -std=c99 %s -emit-llvm -o - | FileCheck %s // CHECK: @Test -// CHECK-NOT: call +// CHECK-NOT: call{{[ \t]+}} _Bool A, B, C, D, E, F; void TestF(float X, float Y) { Index: test/CodeGen/arm-interrupt-attr.c =================================================================== --- test/CodeGen/arm-interrupt-attr.c +++ test/CodeGen/arm-interrupt-attr.c @@ -28,11 +28,11 @@ // CHECK: define arm_aapcscc void @test_undef_interrupt() [[UNDEF_ATTR:#[0-9]+]] } -// CHECK: attributes [[GENERIC_ATTR]] = { nounwind alignstack=8 {{"interrupt"[^=]}} -// CHECK: attributes [[IRQ_ATTR]] = { nounwind alignstack=8 "interrupt"="IRQ" -// CHECK: attributes [[FIQ_ATTR]] = { nounwind alignstack=8 "interrupt"="FIQ" -// CHECK: attributes [[SWI_ATTR]] = { nounwind alignstack=8 "interrupt"="SWI" -// CHECK: attributes [[ABORT_ATTR]] = { nounwind alignstack=8 "interrupt"="ABORT" -// CHECK: attributes [[UNDEF_ATTR]] = { nounwind alignstack=8 "interrupt"="UNDEF" - -// CHECK-APCS: attributes [[GENERIC_ATTR]] = { nounwind "interrupt" +// CHECK: attributes [[GENERIC_ATTR]] = { nounwind alignstack=8 "disable-tail-calls"="false" {{"interrupt"[^=]}} +// CHECK: attributes [[IRQ_ATTR]] = { nounwind alignstack=8 "disable-tail-calls"="false" "interrupt"="IRQ" +// CHECK: attributes [[FIQ_ATTR]] = { nounwind alignstack=8 "disable-tail-calls"="false" "interrupt"="FIQ" +// CHECK: attributes [[SWI_ATTR]] = { nounwind alignstack=8 "disable-tail-calls"="false" "interrupt"="SWI" +// CHECK: attributes [[ABORT_ATTR]] = { nounwind alignstack=8 "disable-tail-calls"="false" "interrupt"="ABORT" +// CHECK: attributes [[UNDEF_ATTR]] = { nounwind alignstack=8 "disable-tail-calls"="false" "interrupt"="UNDEF" + +// CHECK-APCS: attributes [[GENERIC_ATTR]] = { nounwind "disable-tail-calls"="false" "interrupt" Index: test/CodeGen/attr-disable-tail-calls.c =================================================================== --- /dev/null +++ test/CodeGen/attr-disable-tail-calls.c @@ -0,0 +1,11 @@ +// RUN: %clang_cc1 -triple x86_64-apple-macosx10.7.0 %s -emit-llvm -mdisable-tail-calls -o - | FileCheck %s -check-prefix=CHECK -check-prefix=DISABLE +// RUN: %clang_cc1 -triple x86_64-apple-macosx10.7.0 %s -emit-llvm -o - | FileCheck %s -check-prefix=CHECK -check-prefix=ENABLE + +// CHECK: define i32 @f1() [[ATTR:#[0-9]+]] { + +int f1() { + return 0; +} + +// DISABLE: attributes [[ATTR]] = { {{.*}} "disable-tail-calls"="true" {{.*}} } +// ENABLE: attributes [[ATTR]] = { {{.*}} "disable-tail-calls"="false" {{.*}} } Index: test/CodeGenCXX/ctor-globalopt.cpp =================================================================== --- test/CodeGenCXX/ctor-globalopt.cpp +++ test/CodeGenCXX/ctor-globalopt.cpp @@ -13,7 +13,7 @@ // CHECK-LABEL: define internal void @_GLOBAL__sub_I_ctor_globalopt.cpp() // CHECK: call void @ -// CHECK-NOT: call +// CHECK-NOT: call{{[ \t]+}} // O1: @llvm.global_ctors = appending global [0 x { i32, void ()*, i8* }] zeroinitializer