Update tests to accomodate unnamed_addr introduction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123663 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2011-01-17 17:54:17 +00:00
parent 419e8a6299
commit 2522ae5922
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* RUN: %llvmgcc -w -x objective-c -S %s -o - | grep {__utf16_string_1} | grep {internal constant} | grep {12 x i8}
/* RUN: %llvmgcc -w -x objective-c -S %s -o - | grep {__utf16_string_1} | grep {internal unnamed_addr constant} | grep {12 x i8}
rdar://7095855 rdar://7115749 */
void *P = @"iPod™";

View File

@ -1,6 +1,6 @@
// RUN: %llvmgcc -x objective-c -fwritable-strings -S %s -o - | FileCheck %s
// CHECK: @.str = private constant
// CHECK: @.str1 = internal global
// CHECK: @.str = private unnamed_addr constant
// CHECK: @.str1 = internal unnamed_addr global
// rdar://7634471