1f4a2713aSLionel Sambuc // RUN: %clang -target armv7-apple-darwin10 \ 2f4a2713aSLionel Sambuc // RUN: -mno-global-merge -### -fsyntax-only %s 2> %t 3f4a2713aSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-NGM < %t %s 4f4a2713aSLionel Sambuc 5*0a6a1f1dSLionel Sambuc // RUN: %clang -target arm64-apple-ios7 \ 6*0a6a1f1dSLionel Sambuc // RUN: -mno-global-merge -### -fsyntax-only %s 2> %t 7*0a6a1f1dSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-NGM < %t %s 8*0a6a1f1dSLionel Sambuc 9f4a2713aSLionel Sambuc // CHECK-NGM: "-mno-global-merge" 10f4a2713aSLionel Sambuc 11f4a2713aSLionel Sambuc // RUN: %clang -target armv7-apple-darwin10 \ 12f4a2713aSLionel Sambuc // RUN: -mglobal-merge -### -fsyntax-only %s 2> %t 13f4a2713aSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-GM < %t %s 14f4a2713aSLionel Sambuc 15*0a6a1f1dSLionel Sambuc // RUN: %clang -target arm64-apple-ios7 \ 16*0a6a1f1dSLionel Sambuc // RUN: -mglobal-merge -### -fsyntax-only %s 2> %t 17*0a6a1f1dSLionel Sambuc // RUN: FileCheck --check-prefix=CHECK-GM < %t %s 18*0a6a1f1dSLionel Sambuc 19f4a2713aSLionel Sambuc // CHECK-GM-NOT: "-mglobal-merge" 20f4a2713aSLionel Sambuc 21