diff options
Diffstat (limited to 'clang/test/CodeGenObjC')
-rw-r--r-- | clang/test/CodeGenObjC/continuation-class.m | 2 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/dot-syntax-1.m | 2 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/dot-syntax.m | 2 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/hidden.m | 2 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/messages-2.m | 2 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/messages.m | 6 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/newproperty-nested-synthesis-1.m | 2 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/property-getter-dot-syntax.m | 2 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/property.m | 2 |
9 files changed, 11 insertions, 11 deletions
diff --git a/clang/test/CodeGenObjC/continuation-class.m b/clang/test/CodeGenObjC/continuation-class.m index 305d6c7ab39..c22231063af 100644 --- a/clang/test/CodeGenObjC/continuation-class.m +++ b/clang/test/CodeGenObjC/continuation-class.m @@ -1,4 +1,4 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s @interface Object - (id)new; diff --git a/clang/test/CodeGenObjC/dot-syntax-1.m b/clang/test/CodeGenObjC/dot-syntax-1.m index 6fab03935be..18b972f0485 100644 --- a/clang/test/CodeGenObjC/dot-syntax-1.m +++ b/clang/test/CodeGenObjC/dot-syntax-1.m @@ -1,4 +1,4 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s int printf(const char *, ...); diff --git a/clang/test/CodeGenObjC/dot-syntax.m b/clang/test/CodeGenObjC/dot-syntax.m index 348346b8fca..01b71898a7a 100644 --- a/clang/test/CodeGenObjC/dot-syntax.m +++ b/clang/test/CodeGenObjC/dot-syntax.m @@ -1,4 +1,4 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s int printf(const char *, ...); diff --git a/clang/test/CodeGenObjC/hidden.m b/clang/test/CodeGenObjC/hidden.m index fd87d992aaf..0c0dbb3aa50 100644 --- a/clang/test/CodeGenObjC/hidden.m +++ b/clang/test/CodeGenObjC/hidden.m @@ -1,4 +1,4 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s __attribute__((visibility("hidden"))) @interface Hidden diff --git a/clang/test/CodeGenObjC/messages-2.m b/clang/test/CodeGenObjC/messages-2.m index 5cf4d2df221..87f7cc6cc14 100644 --- a/clang/test/CodeGenObjC/messages-2.m +++ b/clang/test/CodeGenObjC/messages-2.m @@ -1,4 +1,4 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s int printf(const char *, ...); diff --git a/clang/test/CodeGenObjC/messages.m b/clang/test/CodeGenObjC/messages.m index ea8809ffcd1..ac3b81dead6 100644 --- a/clang/test/CodeGenObjC/messages.m +++ b/clang/test/CodeGenObjC/messages.m @@ -1,8 +1,8 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s // RUN: grep "objc_msgSend" %t | count 6 -// RUN: clang-cc -fgnu-runtime --emit-llvm -o %t %s +// RUN: clang-cc -fgnu-runtime -emit-llvm -o %t %s // RUN: grep "objc_msg_lookup" %t | count 6 -// RUN: clang-cc -fgnu-runtime -fobjc-nonfragile-abi --emit-llvm -o %t %s +// RUN: clang-cc -fgnu-runtime -fobjc-nonfragile-abi -emit-llvm -o %t %s // RUN: grep "objc_msg_lookup_sender" %t | count 6 typedef struct { diff --git a/clang/test/CodeGenObjC/newproperty-nested-synthesis-1.m b/clang/test/CodeGenObjC/newproperty-nested-synthesis-1.m index 4d9319839d0..898c81add5e 100644 --- a/clang/test/CodeGenObjC/newproperty-nested-synthesis-1.m +++ b/clang/test/CodeGenObjC/newproperty-nested-synthesis-1.m @@ -1,4 +1,4 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s @interface Object - (id) new; diff --git a/clang/test/CodeGenObjC/property-getter-dot-syntax.m b/clang/test/CodeGenObjC/property-getter-dot-syntax.m index c1cc5e99477..8701b580af6 100644 --- a/clang/test/CodeGenObjC/property-getter-dot-syntax.m +++ b/clang/test/CodeGenObjC/property-getter-dot-syntax.m @@ -1,4 +1,4 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s @protocol NSObject - (void *)description; diff --git a/clang/test/CodeGenObjC/property.m b/clang/test/CodeGenObjC/property.m index 59f096f5c59..2ab10541a7d 100644 --- a/clang/test/CodeGenObjC/property.m +++ b/clang/test/CodeGenObjC/property.m @@ -1,4 +1,4 @@ -// RUN: clang-cc --emit-llvm -o %t %s +// RUN: clang-cc -emit-llvm -o %t %s int printf(const char *, ...); |