diff options
| author | David Blaikie <dblaikie@gmail.com> | 2015-02-27 21:19:58 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2015-02-27 21:19:58 +0000 |
| commit | a953f2825ba916302b1008fa071fff336ec67bf1 (patch) | |
| tree | 45f56c2941a77f5a3bb1304e5d25f3bd75235602 /clang/test/CodeGen/c-strings.c | |
| parent | a79ac14fa68297f9888bc70a10df5ed9b8864e38 (diff) | |
| download | llvm-a953f2825ba916302b1008fa071fff336ec67bf1.zip llvm-a953f2825ba916302b1008fa071fff336ec67bf1.tar.gz llvm-a953f2825ba916302b1008fa071fff336ec67bf1.tar.bz2 | |
Update Clang tests to handle explicitly typed load changes in LLVM.
llvm-svn: 230795
Diffstat (limited to 'clang/test/CodeGen/c-strings.c')
| -rw-r--r-- | clang/test/CodeGen/c-strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/c-strings.c b/clang/test/CodeGen/c-strings.c index 36934e8..71d4ba3 100644 --- a/clang/test/CodeGen/c-strings.c +++ b/clang/test/CodeGen/c-strings.c @@ -34,7 +34,7 @@ void f0() { void f1() { static char *x = "hello"; bar(x); - // CHECK: [[T1:%.*]] = load i8** @f1.x + // CHECK: [[T1:%.*]] = load i8*, i8** @f1.x // CHECK: call void @bar(i8* [[T1:%.*]]) } |
