annotate clang/test/CodeGenCXX/m64-ptr.cpp @ 206:f17a3b42b08b
Added tag before-12 for changeset b7591485f4cd
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Mon, 07 Jun 2021 21:25:57 +0900 |
parents |
1d019706d866 |
children |
c4bab56944e8 |
rev |
line source |
150
|
1 // RUN: %clang_cc1 %s -emit-llvm -triple x86_64-apple-darwin -o - | FileCheck %s
|
|
2
|
|
3 // Make sure pointers are passed as pointers, not converted to int.
|
|
4 // The first load should be of type i8** in either 32 or 64 bit mode.
|
|
5 // This formerly happened on x86-64, 7375899.
|
|
6
|
|
7 class StringRef {
|
|
8 public:
|
|
9 const char *Data;
|
|
10 long Len;
|
|
11 };
|
|
12 void foo(StringRef X);
|
|
13 void bar(StringRef &A) {
|
|
14 // CHECK: @_Z3barR9StringRef
|
|
15 // CHECK: load i8*, i8**
|
|
16 foo(A);
|
|
17 // CHECK: ret void
|
|
18 }
|